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
19e1af6e
Commit
19e1af6e
authored
Jan 15, 2005
by
Roger Sayle
Committed by
Roger Sayle
Jan 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-ssa-dom.c (extract_range_from_cond): Correct condition.
From-SVN: r93697
parent
778f72f2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/tree-ssa-dom.c
+1
-1
No files found.
gcc/ChangeLog
View file @
19e1af6e
2004-01-15 Roger Sayle <roger@eyesopen.com>
* tree-ssa-dom.c (extract_range_from_cond): Correct condition.
2004-01-15 Roger Sayle <roger@eyesopen.com>
* harg-reg-set.h (reg_class_names): Prototype global array.
* regclass.c (reg_class_names): Declare here and initialize to
REG_CLASS_NAMES.
...
...
gcc/tree-ssa-dom.c
View file @
19e1af6e
...
...
@@ -3227,7 +3227,7 @@ extract_range_from_cond (tree cond, tree *hi_p, tree *lo_p, int *inverted_p)
case
LT_EXPR
:
low
=
TYPE_MIN_VALUE
(
type
);
if
(
!
tree_int_cst_
equal
(
low
,
op1
))
if
(
!
tree_int_cst_
lt
(
low
,
op1
))
return
0
;
high
=
int_const_binop
(
MINUS_EXPR
,
op1
,
integer_one_node
,
1
);
inverted
=
0
;
...
...
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