From: Richard Kenner Date: Mon, 25 Apr 1994 22:35:21 +0000 (-0400) Subject: (copy_constant, case CONSTRUCTOR): Fix typo; copied list was placed on X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb31ce0a4bb5f367b87663052b17f2d908070bea;p=platform%2Fupstream%2Fgcc.git (copy_constant, case CONSTRUCTOR): Fix typo; copied list was placed on old CONSTRUCTOR, not new one. From-SVN: r7157 --- diff --git a/gcc/varasm.c b/gcc/varasm.c index c08f46e..25ba2d1 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -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));