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
5758c0f1
Commit
5758c0f1
authored
Mar 09, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fold-const.c (int_const_binop): Remove no_overflow.
From-SVN: r96165
parent
b258008a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
gcc/ChangeLog
+2
-0
gcc/fold-const.c
+0
-2
No files found.
gcc/ChangeLog
View file @
5758c0f1
...
...
@@ -6,6 +6,8 @@
* expr.c (expand_assignment): Remove orig_to_rtx.
* fold-const.c (int_const_binop): Remove no_overflow.
2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed
...
...
gcc/fold-const.c
View file @
5758c0f1
...
...
@@ -1303,7 +1303,6 @@ int_const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
int
is_sizetype
=
(
TREE_CODE
(
type
)
==
INTEGER_TYPE
&&
TYPE_IS_SIZETYPE
(
type
));
int
overflow
=
0
;
int
no_overflow
=
0
;
int1l
=
TREE_INT_CST_LOW
(
arg1
);
int1h
=
TREE_INT_CST_HIGH
(
arg1
);
...
...
@@ -1332,7 +1331,6 @@ int_const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
interpretation ruling is needed. */
lshift_double
(
int1l
,
int1h
,
int2l
,
TYPE_PRECISION
(
type
),
&
low
,
&
hi
,
!
uns
);
no_overflow
=
1
;
break
;
case
RROTATE_EXPR
:
...
...
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