Commit b50d021d by Stan Shebs Committed by Stan Shebs

c-lang.c (recognize_objc_keyword): Remove, no longer used.

        * 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.

From-SVN: r56760
parent b808c04c
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> 2002-09-03 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (s390_decompose_address): Remove STRICT parameter * config/s390/s390.c (s390_decompose_address): Remove STRICT parameter
......
...@@ -195,12 +195,6 @@ objc_message_selector () ...@@ -195,12 +195,6 @@ objc_message_selector ()
return 0; return 0;
} }
int
recognize_objc_keyword ()
{
return 0;
}
/* Used by c-typeck.c (build_external_ref), but only for objc. */ /* Used by c-typeck.c (build_external_ref), but only for objc. */
tree tree
......
...@@ -169,7 +169,6 @@ extern void objc_check_decl PARAMS ((tree)); ...@@ -169,7 +169,6 @@ extern void objc_check_decl PARAMS ((tree));
extern void finish_file PARAMS ((void)); extern void finish_file PARAMS ((void));
extern int objc_comptypes PARAMS ((tree, tree, int)); extern int objc_comptypes PARAMS ((tree, tree, int));
extern tree objc_message_selector PARAMS ((void)); extern tree objc_message_selector PARAMS ((void));
extern int recognize_objc_keyword PARAMS ((void));
extern tree lookup_objc_ivar PARAMS ((tree)); extern tree lookup_objc_ivar PARAMS ((tree));
......
...@@ -587,7 +587,7 @@ comp_target_types (ttl, ttr) ...@@ -587,7 +587,7 @@ comp_target_types (ttl, ttr)
{ {
int val; 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) if ((val = objc_comptypes (ttl, ttr, 1)) >= 0)
return val; return val;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment