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
fb3eb6f6
Commit
fb3eb6f6
authored
Nov 23, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(SECONDARY_MEMORY_NEEDED_RTX, SECONDARY_MEMORY_NEEDED_MODE):
Use MODE not mode. From-SVN: r8555
parent
a98c9f1a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
gcc/config/sparc/sparc.h
+5
-5
No files found.
gcc/config/sparc/sparc.h
View file @
fb3eb6f6
...
...
@@ -1097,7 +1097,7 @@ extern char leaf_reg_remap[];
if the frame size is zero. */
#define SECONDARY_MEMORY_NEEDED_RTX(MODE) \
(get_frame_size () == 0 \
? assign_stack_local (
mode, GET_MODE_SIZE (mode
), 0) \
? assign_stack_local (
MODE, GET_MODE_SIZE (MODE
), 0) \
: gen_rtx (MEM, MODE, gen_rtx (PLUS, Pmode, frame_pointer_rtx, \
GEN_INT (STARTING_FRAME_OFFSET))))
...
...
@@ -1106,11 +1106,11 @@ extern char leaf_reg_remap[];
For v8 we copy the default definition. */
#define SECONDARY_MEMORY_NEEDED_MODE(MODE) \
(TARGET_V9 \
? (GET_MODE_BITSIZE (
mode
) < 32 \
? mode_for_size (32, GET_MODE_CLASS (
mode
), 0) \
? (GET_MODE_BITSIZE (
MODE
) < 32 \
? mode_for_size (32, GET_MODE_CLASS (
MODE
), 0) \
: MODE) \
: (GET_MODE_BITSIZE (
mode
) < BITS_PER_WORD \
? mode_for_size (BITS_PER_WORD, GET_MODE_CLASS (
mode
), 0) \
: (GET_MODE_BITSIZE (
MODE
) < BITS_PER_WORD \
? mode_for_size (BITS_PER_WORD, GET_MODE_CLASS (
MODE
), 0) \
: MODE))
/* Return the maximum number of consecutive registers
...
...
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