diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-01-31 18:40:54 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-01-31 18:40:54 -0500 |
commit | 7a75868d8eafc87c5b4f06bc60e0db43e074e23f (patch) | |
tree | a856447a07cf23f7ef43070be59df3943a8c1dab /gcc/fold-const.c | |
parent | 4925f285c18fe0458d85ea77ac4f5bcdfd519f6f (diff) | |
download | gcc-7a75868d8eafc87c5b4f06bc60e0db43e074e23f.zip gcc-7a75868d8eafc87c5b4f06bc60e0db43e074e23f.tar.gz gcc-7a75868d8eafc87c5b4f06bc60e0db43e074e23f.tar.bz2 |
(operand_equal_for_comparison_p): Declare correct_width as unsigned.
From-SVN: r6447
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index d370e52..6f6027d 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; |