aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/cse.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cse.cc b/gcc/cse.cc
index 8fbda4e..9a399e3 100644
--- a/gcc/cse.cc
+++ b/gcc/cse.cc
@@ -239,7 +239,7 @@ static int next_qty;
the constant being compared against, or zero if the comparison
is not against a constant. `comparison_qty' holds the quantity
being compared against when the result is known. If the comparison
- is not with a register, `comparison_qty' is -1. */
+ is not with a register, `comparison_qty' is INT_MIN. */
struct qty_table_elem
{
@@ -4068,7 +4068,7 @@ record_jump_cond (enum rtx_code code, machine_mode mode, rtx op0,
else
{
ent->comparison_const = op1;
- ent->comparison_qty = -1;
+ ent->comparison_qty = INT_MIN;
}
return;