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
d94d2abc
Commit
d94d2abc
authored
May 04, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(push_secondary_reload): Use TYPE for secondary type if it is
RELOAD_FOR_{INPUT,OUTPUT}_ADDRESS. From-SVN: r7211
parent
17a0a76d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gcc/reload.c
+6
-2
No files found.
gcc/reload.c
View file @
d94d2abc
...
...
@@ -343,11 +343,15 @@ push_secondary_reload (in_p, x, opnum, optional, reload_class, reload_mode,
enum
reg_class
t_class
=
NO_REGS
;
enum
machine_mode
t_mode
=
VOIDmode
;
enum
insn_code
t_icode
=
CODE_FOR_nothing
;
enum
reload_type
secondary_type
=
in_p
?
RELOAD_FOR_INPUT_ADDRESS
:
RELOAD_FOR_OUTPUT_ADDRESS
;
enum
reload_type
secondary_type
;
int
i
;
int
s_reload
,
t_reload
=
-
1
;
if
(
type
==
RELOAD_FOR_INPUT_ADDRESS
||
type
==
RELOAD_FOR_OUTPUT_ADDRESS
)
secondary_type
=
type
;
else
secondary_type
=
in_p
?
RELOAD_FOR_INPUT_ADDRESS
:
RELOAD_FOR_OUTPUT_ADDRESS
;
*
picode
=
CODE_FOR_nothing
;
/* If X is a pseudo-register that has an equivalent MEM (actually, if it
...
...
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