diff options
author | Mike Stump <mrs@apple.com> | 2005-11-18 23:40:29 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2005-11-18 23:40:29 +0000 |
commit | 7bbd0aab4cbbb32562e015d10419d4c1616104bb (patch) | |
tree | 4485e94760f589adf0f27e512f1e74736da95b8d /gcc/c-common.c | |
parent | 186abafe49fabf3f0ee8a58c54c36e256846172e (diff) | |
download | gcc-7bbd0aab4cbbb32562e015d10419d4c1616104bb.zip gcc-7bbd0aab4cbbb32562e015d10419d4c1616104bb.tar.gz gcc-7bbd0aab4cbbb32562e015d10419d4c1616104bb.tar.bz2 |
c-common.c (handle_cleanup_attribute): Use a lang hook for lookup_name.
* c-common.c (handle_cleanup_attribute): Use a lang hook for lookup_name.
* config/darwin-c.c (darwin_pragma_unused): Likewise.
* c-decl.c (lookup_name_two) Remove.
* c-tree.h (lookup_name_two): Remove.
* c-objc-common.h (LANG_HOOKS_LOOKUP_NAME): Add.
* langhooks-def.h (LANG_HOOKS_LOOKUP_NAME): Add.
(LANG_HOOKS_DECLS): Add initializer for LANG_HOOKS_LOOKUP_NAME.
* langhooks.h (lang_hooks_for_decls): Add lookup_name.
cp:
* cp-objcp-common.h (LANG_HOOKS_LOOKUP_NAME): Add.
* name-lookup.c (lookup_name_two): Remove.
(lookup_name_one): Add.
* name-lookup.h (lookup_name_two): Remove.
(lookup_name_one): Add.
From-SVN: r107196
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index feb87ef..b54755d 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -5464,7 +5464,7 @@ handle_cleanup_attribute (tree *node, tree name, tree args, *no_add_attrs = true; return NULL_TREE; } - cleanup_decl = lookup_name_two (cleanup_id, 0); + cleanup_decl = lang_hooks.decls.lookup_name (cleanup_id); if (!cleanup_decl || TREE_CODE (cleanup_decl) != FUNCTION_DECL) { error ("cleanup argument not a function"); |