diff options
author | Stan Shebs <shebs@apple.com> | 2002-09-03 16:40:29 +0000 |
---|---|---|
committer | Stan Shebs <shebs@gcc.gnu.org> | 2002-09-03 16:40:29 +0000 |
commit | b50d021d86eb6ab00b0d4c69cb39cd784733f77e (patch) | |
tree | b9e1bb81f16fcb31d7f5424cfa2011a195ff26f6 /gcc | |
parent | b808c04c9d8715ee20ea79120c05dc856da0726b (diff) | |
download | gcc-b50d021d86eb6ab00b0d4c69cb39cd784733f77e.zip gcc-b50d021d86eb6ab00b0d4c69cb39cd784733f77e.tar.gz gcc-b50d021d86eb6ab00b0d4c69cb39cd784733f77e.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/c-lang.c | 6 | ||||
-rw-r--r-- | gcc/c-tree.h | 1 | ||||
-rw-r--r-- | gcc/c-typeck.c | 2 |
4 files changed, 7 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a2a6f25..f21b204 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 b6f8a7c..ec17f50 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 0d6829f..2976e65 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 bfc4484..131eecd 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; |