(copy_constant, case CONSTRUCTOR): Fix typo; copied list was placed on

old CONSTRUCTOR, not new one.

From-SVN: r7157
This commit is contained in:
Richard Kenner 1994-04-25 18:35:21 -04:00
parent 72f5a12bcb
commit bb31ce0a4b
1 changed files with 1 additions and 1 deletions

View File

@ -2522,7 +2522,7 @@ copy_constant (exp)
tree list = copy_list (CONSTRUCTOR_ELTS (exp));
tree tail;
CONSTRUCTOR_ELTS (exp) = list;
CONSTRUCTOR_ELTS (copy) = list;
for (tail = list; tail; tail = TREE_CHAIN (tail))
TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));