Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
d4fcc636
Commit
d4fcc636
authored
Dec 07, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(merge_ranges): In (+,-) case, if lower bounds are the same the result
is always false. From-SVN: r13236
parent
bd5b5c85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
gcc/fold-const.c
+3
-4
No files found.
gcc/fold-const.c
View file @
d4fcc636
...
...
@@ -2976,7 +2976,7 @@ merge_ranges (pin_p, plow, phigh, in0_p, low0, high0, in1_p, low1, high1)
/* If they don't overlap, the result is the first range. If the
second range is a subset of the first, we can't describe this as
a single range unless both ranges end at the same place. If both
ranges
also
start in the same place, then the result is false.
ranges start in the same place, then the result is false.
Otherwise, we go from the start of the first range to just before
the start of the second. */
if
(
no_overlap
)
...
...
@@ -2985,9 +2985,8 @@ merge_ranges (pin_p, plow, phigh, in0_p, low0, high0, in1_p, low1, high1)
&&
integer_zerop
(
range_binop
(
EQ_EXPR
,
integer_type_node
,
high0
,
1
,
high1
,
0
)))
return
0
;
else
if
(
subset
&&
integer_onep
(
range_binop
(
EQ_EXPR
,
integer_type_node
,
low0
,
0
,
low1
,
0
)))
else
if
(
integer_onep
(
range_binop
(
EQ_EXPR
,
integer_type_node
,
low0
,
0
,
low1
,
0
)))
in_p
=
0
,
low
=
high
=
0
;
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment