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
b24a53d5
Commit
b24a53d5
authored
Mar 16, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(get_secondary_mem): Use macro SECONDARY_MEMORY_NEEDED_RTX.
From-SVN: r3758
parent
97989775
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
gcc/reload.c
+8
-2
No files found.
gcc/reload.c
View file @
b24a53d5
...
...
@@ -413,8 +413,14 @@ get_secondary_mem (x, mode)
by noticing that the frame size has changed. */
if
(
secondary_memlocs
[(
int
)
mode
]
==
0
)
secondary_memlocs
[(
int
)
mode
]
=
assign_stack_local
(
mode
,
GET_MODE_SIZE
(
mode
),
0
);
{
#ifdef SECONDARY_MEMORY_NEEDED_RTX
secondary_memlocs
[(
int
)
mode
]
=
SECONDARY_MEMORY_NEEDED_RTX
(
mode
);
#else
secondary_memlocs
[(
int
)
mode
]
=
assign_stack_local
(
mode
,
GET_MODE_SIZE
(
mode
),
0
);
#endif
}
/* Get a version of the address doing any eliminations needed. If that
didn't give us a new MEM, make a new one if it isn't valid. */
...
...
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