diff options
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 8d815c94836..2cee62fa27a 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -723,7 +723,7 @@ convert_modes (enum machine_mode mode, enum machine_mode oldmode, rtx x, int uns make the high-order word of the constant zero, not all ones. */ if (unsignedp && GET_MODE_CLASS (mode) == MODE_INT - && GET_MODE_BITSIZE (mode) == 2 * HOST_BITS_PER_WIDE_INT + && GET_MODE_BITSIZE (mode) == HOST_BITS_PER_DOUBLE_INT && CONST_INT_P (x) && INTVAL (x) < 0) { double_int val = uhwi_to_double_int (INTVAL (x)); |