Fix C++ FE attribute alias failure.

* decl.c (duplicate_decls): Don't call decl_attributes.

From-SVN: r58034
This commit is contained in:
Jim Wilson 2002-10-10 22:29:05 +00:00 committed by Jim Wilson
parent 64e8f36132
commit e89fe41c87
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-10-10 Jim Wilson <wilson@redhat.com>
* decl.c (duplicate_decls): Don't call decl_attributes.
2002-10-09 Zack Weinberg <zack@codesourcery.com>
PR c/7353

View File

@ -3422,7 +3422,6 @@ duplicate_decls (newdecl, olddecl)
except for any that we copy here from the old type. */
DECL_ATTRIBUTES (newdecl)
= (*targetm.merge_decl_attributes) (olddecl, newdecl);
decl_attributes (&newdecl, DECL_ATTRIBUTES (newdecl), 0);
if (TREE_CODE (newdecl) == TEMPLATE_DECL)
{