diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-28 07:39:44 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-28 07:39:44 +0000 |
commit | dbc42b788c6fba012fe571c5104d3c8500ee9aae (patch) | |
tree | 3e0b5a2b383f5ef72130ddb2039c242ddc5bbe56 /gcc/cp/lex.c | |
parent | 052c7a5ce847689f2bb64837fb0af111a31686cb (diff) | |
download | gcc-dbc42b788c6fba012fe571c5104d3c8500ee9aae.tar.gz |
* Makefile.in (integrate.o): Update.
* c-decl.c (copy_lang_decl): Rename.
* c-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
* integrate.c: Include langhooks.h.
(copy_decl_for_inlining): Update to use langhook.
* langhooks-def.h (lhd_do_nothing_t,
LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): New.
(LANG_HOOKS_INITIALIZER): Update.
* langhooks.c (lhd_do_nothing_t): New.
* langhooks.h (struct lang_hooks): Add dup_lang_specific_decl.
* tree.h (copy_lang_decl): Remove.
ada:
* misc.c (copy_lang_decl): Remove.
cp:
* class.c (build_clone): Update.
* cp-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
* cp-tree.h (cxx_dup_lang_specific_decl): New.
* lex.c (copy_lang_decl): Rename cxx_dup_lang_specific_decl.
(copy_decl): Update.
* method.c (make_thunk): Update.
f:
* com.c (copy_lang_decl): Delete.
java:
* decl.c (copy_lang_decl): Rename java_dup_lang_specific_decl.
* java-tree.h (java_dup_lang_specific_decl): New.
* lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
objc:
* objc-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50122 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/lex.c')
-rw-r--r-- | gcc/cp/lex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index 885002a9793..d338632bc32 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -1516,7 +1516,7 @@ retrofit_lang_decl (t) } void -copy_lang_decl (node) +cxx_dup_lang_specific_decl (node) tree node; { int size; @@ -1548,7 +1548,7 @@ copy_decl (decl) tree copy; copy = copy_node (decl); - copy_lang_decl (copy); + cxx_dup_lang_specific_decl (copy); return copy; } |