mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:20:24 +08:00
(copy_constant, case COMPLEX_CST): Add new arg, TYPE, to call to build_complex.
From-SVN: r12866
This commit is contained in:
parent
214d5b845f
commit
28eb1cb8c3
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user