diff options
Diffstat (limited to 'gcc/tree-complex.c')
-rw-r--r-- | gcc/tree-complex.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c index 54ea819..5c14e41 100644 --- a/gcc/tree-complex.c +++ b/gcc/tree-complex.c @@ -506,8 +506,7 @@ build_replicated_const (tree type, tree inner_type, HOST_WIDE_INT value) else abort (); - ret = build_int_2 (low, high); - TREE_TYPE (ret) = type; + ret = build_int_cst (type, low, high); return ret; } |