diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index e64fa64..12445aa 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1249,7 +1249,7 @@ const_binop (enum tree_code code, tree arg1, tree arg2) return NULL_TREE; wide_int w2 = arg2; f2.data.high = w2.elt (1); - f2.data.low = w2.elt (0); + f2.data.low = w2.ulow (); f2.mode = SImode; } break; |