diff options
author | Richard Henderson <rth@redhat.com> | 2005-11-21 13:27:29 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2005-11-21 13:27:29 -0800 |
commit | 10e6657a206fdeb7ac00167d1b40cf58e8f5517b (patch) | |
tree | 324dda1490d4c679f3db106b92840b7fbb271bfc /gcc/c-common.c | |
parent | 3d8bf70f59ee15fc337c025307a419558e7aedc4 (diff) | |
download | gcc-10e6657a206fdeb7ac00167d1b40cf58e8f5517b.zip gcc-10e6657a206fdeb7ac00167d1b40cf58e8f5517b.tar.gz gcc-10e6657a206fdeb7ac00167d1b40cf58e8f5517b.tar.bz2 |
c-common.c, [...]: Revert 2005-11-18 lookup_name patch.
gcc/
* c-common.c, config/darwin-c.c, c-decl.c, c-tree.h, c-objc-common.h,
langhooks-def.h, langhooks.h: Revert 2005-11-18 lookup_name patch.
* c-tree.h (lookup_name): Move declaration ...
* c-common.h (lookup_name): ... here.
* config/darwin-c.c: Include c-common.h.
* config/t-darwin: Update dependencies.
gcc/cp/
* cp-objcp-common.h, name-lookup.c, name-lookup.h: Revert 11-18 patch.
* name-lookup.c (lookup_name): Remove prefer_type argument.
(lookup_name_prefer_type): New.
* decl.c (lookup_and_check_tag): Use them.
* pt.c (tsubst_friend_class): Likewise.
(lookup_template_class): Likewise.
(tsubst_copy_and_build): Likewise.
* name-lookup.h (lookup_name_prefer_type): New.
(lookup_name): Remove declaration.
From-SVN: r107325
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 bdaa9cc..7b27ba0 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 = lang_hooks.decls.lookup_name (cleanup_id); + cleanup_decl = lookup_name (cleanup_id); if (!cleanup_decl || TREE_CODE (cleanup_decl) != FUNCTION_DECL) { error ("cleanup argument not a function"); |