From: Bernd Schmidt Date: Fri, 8 Jul 2011 13:01:07 +0000 (+0000) Subject: rtlanal.c (nonzero_bits1): Don't compare GET_MODE_SIZE against a bitsize. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=86cdf39313b1c1bd212037be84f9161eda0d4c7f;p=gcc.git rtlanal.c (nonzero_bits1): Don't compare GET_MODE_SIZE against a bitsize. * rtlanal.c (nonzero_bits1): Don't compare GET_MODE_SIZE against a bitsize. From-SVN: r176039 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ff37cdab3ac..151211ba381 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -13,6 +13,9 @@ * convert.c (convert_to_integer): Likewise. * expmed.c (expand_shift_1): Likewise. + * rtlanal.c (nonzero_bits1): Don't compare GET_MODE_SIZE against + a bitsize. + 2011-07-08 Rainer Orth * Makefile.in (LIBGCOV): Remove. diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index ac9da152c3c..76aa79a4b9a 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -3993,7 +3993,7 @@ nonzero_bits1 (const_rtx x, enum machine_mode mode, const_rtx known_x, nonzero = 1; #endif - if (GET_MODE_SIZE (GET_MODE (x)) < mode_width) + if (GET_MODE_PRECISION (GET_MODE (x)) < mode_width) nonzero |= (GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x))); break;