OSDN Git Service

* c-lang.c (recognize_objc_keyword): Remove, no longer used.
authorshebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 3 Sep 2002 16:40:29 +0000 (16:40 +0000)
committershebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 3 Sep 2002 16:40:29 +0000 (16:40 +0000)
        * c-tree.h (recognize_objc_keyword): Remove decl.
        * c-typeck.c (comp_target_types): Update a comment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56760 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/c-lang.c
gcc/c-tree.h
gcc/c-typeck.c

index a2a6f25..f21b204 100644 (file)
@@ -1,3 +1,9 @@
+2002-09-03  Stan Shebs  <shebs@apple.com>
+
+       * c-lang.c (recognize_objc_keyword): Remove, no longer used.
+       * c-tree.h (recognize_objc_keyword): Remove decl.
+       * c-typeck.c (comp_target_types): Update a comment.
+
 2002-09-03  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * config/s390/s390.c (s390_decompose_address): Remove STRICT parameter
index b6f8a7c..ec17f50 100644 (file)
@@ -195,12 +195,6 @@ objc_message_selector ()
   return 0;
 }
 
-int
-recognize_objc_keyword ()
-{
-  return 0;
-}
-
 /* Used by c-typeck.c (build_external_ref), but only for objc.  */
 
 tree
index 0d6829f..2976e65 100644 (file)
@@ -169,7 +169,6 @@ extern void objc_check_decl                 PARAMS ((tree));
 extern void finish_file                                PARAMS ((void));
 extern int objc_comptypes                      PARAMS ((tree, tree, int));
 extern tree objc_message_selector              PARAMS ((void));
-extern int recognize_objc_keyword              PARAMS ((void));
 extern tree lookup_objc_ivar                   PARAMS ((tree));
 
 \f
index bfc4484..131eecd 100644 (file)
@@ -587,7 +587,7 @@ comp_target_types (ttl, ttr)
 {
   int val;
 
-  /* Give maybe_objc_comptypes a crack at letting these types through.  */
+  /* Give objc_comptypes a crack at letting these types through.  */
   if ((val = objc_comptypes (ttl, ttr, 1)) >= 0)
     return val;