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
5a9d82a6
Commit
5a9d82a6
authored
Oct 24, 1996
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(make_range, case PLUS_EXPR): Normalize an unsigned
range that wraps around 0. From-SVN: r13030
parent
1908a152
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
gcc/fold-const.c
+9
-1
No files found.
gcc/fold-const.c
View file @
5a9d82a6
...
...
@@ -2809,7 +2809,15 @@ make_range (exp, pin_p, plow, phigh)
||
(
n_high
!=
0
&&
TREE_OVERFLOW
(
n_high
)))
break
;
low
=
n_low
,
high
=
n_high
;
/* Check for an unsigned range which has wrapped around the maximum
value thus making n_high < n_low, and normalize it. */
if
(
n_low
&&
n_high
&&
tree_int_cst_lt
(
n_high
,
n_low
))
{
low
=
n_high
,
high
=
n_low
;
in_p
=
!
in_p
;
}
else
low
=
n_low
,
high
=
n_high
;
exp
=
arg0
;
continue
;
...
...
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