summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4>2017-11-13 13:05:09 +0000
committeramacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4>2017-11-13 13:05:09 +0000
commit384482ce313b3b52ed88a56d2fe306ee3b966514 (patch)
treed4c831f77708ffe307a7a0a0dd54f8eefcadf660
parent0389d739fc6c10f28861a2d8dc1219f75e97cbaa (diff)
downloadgcc-384482ce313b3b52ed88a56d2fe306ee3b966514.tar.gz
Fix typo.. remove trailing slash.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/range-gen3@254685 138bc75d-0d04-0410-961f-82ee72b054a4
-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)
{