From: Richard Kenner Date: Mon, 31 Jan 1994 23:40:54 +0000 (-0500) Subject: (operand_equal_for_comparison_p): Declare correct_width as unsigned. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7a75868d8eafc87c5b4f06bc60e0db43e074e23f;p=gcc.git (operand_equal_for_comparison_p): Declare correct_width as unsigned. From-SVN: r6447 --- diff --git a/gcc/fold-const.c b/gcc/fold-const.c index d370e520fbd..6f6027d67a0 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1871,7 +1871,7 @@ operand_equal_for_comparison_p (arg0, arg1, other) { int unsignedp1, unsignedpo; tree primarg1, primother; - int correct_width; + unsigned correct_width; if (operand_equal_p (arg0, arg1, 0)) return 1;