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
This commit is contained in:
Stan Shebs 2002-09-03 16:40:29 +00:00 committed by Stan Shebs
parent b808c04c9d
commit b50d021d86
4 changed files with 7 additions and 8 deletions

View 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

View 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

View 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));

View 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;