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-decl.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-decl.c')
-rw-r--r-- | gcc/c-decl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 99e91c0..003b813 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -2671,15 +2671,6 @@ lookup_name (tree name) return 0; } -/* Similar to `lookup_name' for the benefit of common code and the C++ - front end. */ - -tree -lookup_name_two (tree name, int ARG_UNUSED (prefer_type)) -{ - return lookup_name (name); -} - /* Similar to `lookup_name' but look only at the indicated scope. */ static tree |