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
209eaaff
Commit
209eaaff
authored
Mar 07, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fold-const.c (fold_binary): Remove handling of RANGE_EXPR.
From-SVN: r96002
parent
ede62875
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
gcc/ChangeLog
+4
-0
gcc/fold-const.c
+0
-10
No files found.
gcc/ChangeLog
View file @
209eaaff
2005-03-07 Kazu Hirata <kazu@cs.umass.edu>
* fold-const.c (fold_binary): Remove handling of RANGE_EXPR.
2005-03-06 David Edelsohn <edelsohn@gnu.org>
2005-03-06 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/predicates.md (branch_comparison_operator): Remove
* config/rs6000/predicates.md (branch_comparison_operator): Remove
...
...
gcc/fold-const.c
View file @
209eaaff
...
@@ -7176,16 +7176,6 @@ fold_binary (tree expr)
...
@@ -7176,16 +7176,6 @@ fold_binary (tree expr)
switch
(
code
)
switch
(
code
)
{
{
case
RANGE_EXPR
:
if
(
TREE_CONSTANT
(
t
)
!=
wins
)
{
tem
=
copy_node
(
t
);
TREE_CONSTANT
(
tem
)
=
wins
;
TREE_INVARIANT
(
tem
)
=
wins
;
return
tem
;
}
return
t
;
case
PLUS_EXPR
:
case
PLUS_EXPR
:
/* A + (-B) -> A - B */
/* A + (-B) -> A - B */
if
(
TREE_CODE
(
arg1
)
==
NEGATE_EXPR
)
if
(
TREE_CODE
(
arg1
)
==
NEGATE_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