(copy_constant, case COMPLEX_CST): Add new arg, TYPE, to call to build_complex.

From-SVN: r12866
This commit is contained in:
Richard Kenner 1996-09-29 19:04:12 -04:00
parent 214d5b845f
commit 28eb1cb8c3

View File

@ -2796,7 +2796,8 @@ copy_constant (exp)
return copy_node (exp);
case COMPLEX_CST:
return build_complex (copy_constant (TREE_REALPART (exp)),
return build_complex (TREE_TYPE (exp),
copy_constant (TREE_REALPART (exp)),
copy_constant (TREE_IMAGPART (exp)));
case PLUS_EXPR: