summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/c-lang.c6
-rw-r--r--gcc/c-tree.h1
-rw-r--r--gcc/c-typeck.c2
4 files changed, 7 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a2a6f2545fe..f21b204de1a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/c-lang.c b/gcc/c-lang.c
index b6f8a7c99fc..ec17f505bea 100644
--- a/gcc/c-lang.c
+++ b/gcc/c-lang.c
@@ -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
diff --git a/gcc/c-tree.h b/gcc/c-tree.h
index 0d6829fc6e9..2976e65250a 100644
--- a/gcc/c-tree.h
+++ b/gcc/c-tree.h
@@ -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));
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c
index bfc44848ad7..131eecd3221 100644
--- a/gcc/c-typeck.c
+++ b/gcc/c-typeck.c
@@ -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;
OpenPOWER on IntegriCloud