diff options
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index c72d81e..2313619 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -5229,7 +5229,7 @@ simplify_set (x) if (GET_MODE_BITSIZE (inner_mode) <= HOST_BITS_PER_WIDE_INT && (nonzero_bits (inner, inner_mode) < ((unsigned HOST_WIDE_INT) 1 - << (GET_MODE_BITSIZE (inner_mode) - 1)))) + << (GET_MODE_BITSIZE (GET_MODE (src)) - 1)))) { SUBST (SET_SRC (x), inner); src = SET_SRC (x); |