diff options
author | Ziemowit Laski <zlaski@apple.com> | 2004-09-01 07:55:39 +0000 |
---|---|---|
committer | Ziemowit Laski <zlaski@gcc.gnu.org> | 2004-09-01 07:55:39 +0000 |
commit | bc095846795081196f13f224804c85571ff2f97d (patch) | |
tree | 59f347b95142c9c32da7882258f10dadaaba1512 /gcc/stub-objc.c | |
parent | 45f366abae43ce0df9e3ef7eae7b8eee96f506ab (diff) | |
download | gcc-bc095846795081196f13f224804c85571ff2f97d.tar.gz |
c-common.h (lookup_interface): Remove prototype.
[gcc/ChangeLog]
2004-09-01 Ziemowit Laski <zlaski@apple.com>
* c-common.h (lookup_interface): Remove prototype.
(is_class_name): Rename to objc_is_class_name.
(lookup_objc_ivar): Rename to objc_lookup_ivar.
(get_current_scope): Rename to objc_get_current_scope.
* c-decl.c (get_current_scope): Rename to objc_get_current_scope.
* c-parse.in (parmlist_or_identifiers_1): Get rid of unused variable.
(yylexname): Call objc_is_class_name() instead of is_class_name().
* c-typeck.c (build_external_ref): Call objc_lookup_ivar()
instead of lookup_objc_ivar().
* stub-objc.c (lookup_interface): Remove stub.
(is_class_name): Rename to objc_is_class_name.
(lookup_objc_ivar): Rename to objc_lookup_ivar.
[gcc/objc/ChangeLog]
2004-09-01 Ziemowit Laski <zlaski@apple.com>
* objc-act.c (lookup_interface): Make function 'static' and add a
local prototype.
(objc_check_decl, get_class_reference, objc_declare_alias,
objc_declare_class, objc_is_object_ptr): Call objc_is_class_name()
instead of is_class_name().
(get_super_receiver, objc_clear_super_receiver): Call
objc_get_current_scope() instead of get_current_scope().
(is_class_name): Rename to objc_is_class_name.
(lookup_objc_ivar): Rename to objc_lookup_ivar.
From-SVN: r86879
Diffstat (limited to 'gcc/stub-objc.c')
-rw-r--r-- | gcc/stub-objc.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gcc/stub-objc.c b/gcc/stub-objc.c index abe593da37a..5df3323ff76 100644 --- a/gcc/stub-objc.c +++ b/gcc/stub-objc.c @@ -28,13 +28,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "c-common.h" tree -lookup_interface (tree ARG_UNUSED (arg)) -{ - return 0; -} - -tree -is_class_name (tree ARG_UNUSED (arg)) +objc_is_class_name (tree ARG_UNUSED (arg)) { return 0; } @@ -46,7 +40,7 @@ objc_is_object_ptr (tree ARG_UNUSED (arg)) } tree -lookup_objc_ivar (tree ARG_UNUSED (arg)) +objc_lookup_ivar (tree ARG_UNUSED (arg)) { return 0; } |