diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-22 19:05:51 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-22 19:05:51 +0000 |
commit | d79c03041d153f440c38950d247fc62f0bc67983 (patch) | |
tree | c0221e59d58bacbef17a51037658a7ea03fc6bec /gcc/objcp | |
parent | 8e72f4b027b79d2e149680407ef578210d71791c (diff) | |
download | gcc-d79c03041d153f440c38950d247fc62f0bc67983.tar.gz |
2005-11-22 Andrew Pinski <pinskia@physics.uc.edu>
* objcp-decl.c (objcp_lookup_name): Remove.
* objcp-decl.h (objcp_lookup_name): Delete.
(lookup_name): Kill define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107369 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objcp')
-rw-r--r-- | gcc/objcp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/objcp/objcp-decl.c | 6 | ||||
-rw-r--r-- | gcc/objcp/objcp-decl.h | 3 |
3 files changed, 6 insertions, 9 deletions
diff --git a/gcc/objcp/ChangeLog b/gcc/objcp/ChangeLog index 061011e1646..c89d3be736f 100644 --- a/gcc/objcp/ChangeLog +++ b/gcc/objcp/ChangeLog @@ -1,3 +1,9 @@ +2005-11-22 Andrew Pinski <pinskia@physics.uc.edu> + + * objcp-decl.c (objcp_lookup_name): Remove. + * objcp-decl.h (objcp_lookup_name): Delete. + (lookup_name): Kill define. + 2005-09-11 Richard Henderson <rth@redhat.com> * objcp-lang.c (objcxx_init_ts): Remove ALIAS_DECL. diff --git a/gcc/objcp/objcp-decl.c b/gcc/objcp/objcp-decl.c index 8a26c8fab7b..c7882077b45 100644 --- a/gcc/objcp/objcp-decl.c +++ b/gcc/objcp/objcp-decl.c @@ -88,12 +88,6 @@ objcp_finish_function (void) } tree -objcp_lookup_name (tree name) -{ - return lookup_name (name, -1); -} - -tree objcp_xref_tag (enum tree_code code ATTRIBUTE_UNUSED, tree name) { return xref_tag (record_type, name, ts_global, false); diff --git a/gcc/objcp/objcp-decl.h b/gcc/objcp/objcp-decl.h index 81cf7adacb2..28821791efb 100644 --- a/gcc/objcp/objcp-decl.h +++ b/gcc/objcp/objcp-decl.h @@ -26,7 +26,6 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA extern tree objcp_start_struct (enum tree_code, tree); extern tree objcp_finish_struct (tree, tree, tree); extern void objcp_finish_function (void); -extern tree objcp_lookup_name (tree); extern tree objcp_build_function_call (tree, tree); extern tree objcp_xref_tag (enum tree_code, tree); extern int objcp_comptypes (tree, tree); @@ -46,8 +45,6 @@ extern tree objcp_end_compound_stmt (tree, int); objcp_finish_struct (t, fieldlist, attributes) #define finish_function() \ objcp_finish_function () -#define lookup_name(name) \ - objcp_lookup_name (name) #define xref_tag(code, name) \ objcp_xref_tag (code, name) #define comptypes(type1, type2) \ |