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
a015279e
Commit
a015279e
authored
Apr 13, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(LEGITIMIZE_ADDRESS): Last arg to force_operand is NULL_RTX.
From-SVN: r4146
parent
fcbaecc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/config/sparc/sparc.h
+4
-4
No files found.
gcc/config/sparc/sparc.h
View file @
a015279e
...
@@ -1302,16 +1302,16 @@ extern struct rtx_def *legitimize_pic_address ();
...
@@ -1302,16 +1302,16 @@ extern struct rtx_def *legitimize_pic_address ();
{ rtx sparc_x = (X); \
{ rtx sparc_x = (X); \
if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 0)) == MULT) \
if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 0)) == MULT) \
(X) = gen_rtx (PLUS, Pmode, XEXP (X, 1), \
(X) = gen_rtx (PLUS, Pmode, XEXP (X, 1), \
force_operand (XEXP (X, 0),
0));
\
force_operand (XEXP (X, 0),
NULL_RTX));
\
if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == MULT) \
if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == MULT) \
(X) = gen_rtx (PLUS, Pmode, XEXP (X, 0), \
(X) = gen_rtx (PLUS, Pmode, XEXP (X, 0), \
force_operand (XEXP (X, 1),
0));
\
force_operand (XEXP (X, 1),
NULL_RTX));
\
if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 0)) == PLUS) \
if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 0)) == PLUS) \
(X) = gen_rtx (PLUS, Pmode, force_operand (XEXP (X, 0),
0
),\
(X) = gen_rtx (PLUS, Pmode, force_operand (XEXP (X, 0),
NULL_RTX
),\
XEXP (X, 1)); \
XEXP (X, 1)); \
if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == PLUS) \
if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == PLUS) \
(X) = gen_rtx (PLUS, Pmode, XEXP (X, 0), \
(X) = gen_rtx (PLUS, Pmode, XEXP (X, 0), \
force_operand (XEXP (X, 1),
0));
\
force_operand (XEXP (X, 1),
NULL_RTX));
\
if (sparc_x != (X) && memory_address_p (MODE, X)) \
if (sparc_x != (X) && memory_address_p (MODE, X)) \
goto WIN; \
goto WIN; \
if (flag_pic) (X) = legitimize_pic_address (X, MODE, 0, 0); \
if (flag_pic) (X) = legitimize_pic_address (X, MODE, 0, 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