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/c-decl.c | |
parent | 45f366abae43ce0df9e3ef7eae7b8eee96f506ab (diff) | |
download | gcc-bc095846795081196f13f224804c85571ff2f97d.zip gcc-bc095846795081196f13f224804c85571ff2f97d.tar.gz gcc-bc095846795081196f13f224804c85571ff2f97d.tar.bz2 |
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/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index e358ff6..a649c43 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -533,7 +533,7 @@ c_finish_incomplete_decl (tree decl) /* The Objective-C front-end often needs to determine the current scope. */ void * -get_current_scope (void) +objc_get_current_scope (void) { return current_scope; } |