From: Stan Shebs Date: Tue, 3 Sep 2002 16:40:29 +0000 (+0000) Subject: c-lang.c (recognize_objc_keyword): Remove, no longer used. X-Git-Tag: releases/gcc-3.3.0~3069 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b50d021d86eb6ab00b0d4c69cb39cd784733f77e;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a2a6f2545fe8..f21b204de1a6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-09-03 Stan Shebs + + * 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 * config/s390/s390.c (s390_decompose_address): Remove STRICT parameter diff --git a/gcc/c-lang.c b/gcc/c-lang.c index b6f8a7c99fc5..ec17f505bea3 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 0d6829fc6e90..2976e65250aa 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 bfc44848ad76..131eecd32216 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;