(nonzero_bits, cases DIV, MOD, UDIV, UMOD): Declare op0_maybe_minusp
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 31 Aug 1994 23:17:29 +0000 (19:17 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 31 Aug 1994 23:17:29 +0000 (19:17 -0400)
and op1_maybe_minusp as HOST_WIDE_INT.

From-SVN: r8006

gcc/combine.c

index 851a48e1beeec9eb598ae5f0b9acc9c24847e8e9..4ed0543771359ebc0c7669b27c59a49ed65b4e05 100644 (file)
@@ -6889,8 +6889,10 @@ nonzero_bits (x, mode)
        int width1 = floor_log2 (nz1) + 1;
        int low0 = floor_log2 (nz0 & -nz0);
        int low1 = floor_log2 (nz1 & -nz1);
-       int op0_maybe_minusp = (nz0 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
-       int op1_maybe_minusp = (nz1 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
+       HOST_WIDE_INT op0_maybe_minusp
+         = (nz0 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
+       HOST_WIDE_INT op1_maybe_minusp
+         = (nz1 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
        int result_width = mode_width;
        int result_low = 0;