diff options
author | Richard Henderson <rth@redhat.com> | 2003-09-30 15:58:39 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2003-09-30 15:58:39 -0700 |
commit | 69ee8086675cffc7b2a3c843e4f9817ef4912def (patch) | |
tree | 205e09f6c051a69dfe70e28a74a0279a4bd0136d | |
parent | bf9d3c27744bc5f86b3fa3d75e67552178c283ad (diff) | |
download | gcc-69ee8086675cffc7b2a3c843e4f9817ef4912def.zip gcc-69ee8086675cffc7b2a3c843e4f9817ef4912def.tar.gz gcc-69ee8086675cffc7b2a3c843e4f9817ef4912def.tar.bz2 |
* decl.c (duplicate_decls): Copy DECL_SAVED_INSNS too.
From-SVN: r71959
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/decl.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4c99f87..b6fe158 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2003-09-30 Richard Henderson <rth@redhat.com> + + * decl.c (duplicate_decls): Copy DECL_SAVED_INSNS too. + 2003-09-30 Kelley Cook <kelleycoook@wideopenwest.com> * g++spec.c: Convert to ISO C90 prototypes. diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 17c36b1..64d8e52 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -3198,7 +3198,10 @@ duplicate_decls (tree newdecl, tree olddecl) if (CAN_HAVE_FULL_LANG_DECL_P (newdecl) && DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl)) - DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl); + { + DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl); + DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl); + } } /* Merge the section attribute. |