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
d9771f62
Commit
d9771f62
authored
Oct 01, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(form_sum): Undo Sep 28 change.
From-SVN: r5548
parent
0e54aab2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
4 deletions
+1
-4
gcc/reload.c
+1
-4
No files found.
gcc/reload.c
View file @
d9771f62
...
...
@@ -4327,10 +4327,7 @@ form_sum (x, y)
/* Note that if the operands of Y are specified in the opposite
order in the recursive calls below, infinite recursion will occur. */
if
(
GET_CODE
(
y
)
==
PLUS
&&
CONSTANT_P
(
XEXP
(
y
,
1
))
/* Moving the constant in with the MEM yields rtl that reload may not
be able to handle when this is an address calculation. */
&&
GET_CODE
(
x
)
!=
MEM
)
if
(
GET_CODE
(
y
)
==
PLUS
&&
CONSTANT_P
(
XEXP
(
y
,
1
)))
return
form_sum
(
form_sum
(
x
,
XEXP
(
y
,
0
)),
XEXP
(
y
,
1
));
/* If both constant, encapsulate sum. Otherwise, just form sum. A
...
...
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