summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/range-op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/range-op.c b/gcc/range-op.c
index 6333238356c..586dab85ac5 100644
--- a/gcc/range-op.c
+++ b/gcc/range-op.c
@@ -836,7 +836,7 @@ op_rr (opm_mode mode, irange& r, const irange& lh, const irange& rh)
res = op_ir (mode, r, lh.upper_bound (), rh);
else
if (wi::eq_p (rh.upper_bound (), rh.lower_bound ()))
- res = op_ri (mode, r, lh, rh.upper_bound ());\
+ res = op_ri (mode, r, lh, rh.upper_bound ());
if (!res)
{