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
6d808a73
Commit
6d808a73
authored
May 19, 1997
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(PUSH_ROUNDING): Add coldfire support.
From-SVN: r14104
parent
ab9eef41
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gcc/config/m68k/m68k.h
+3
-2
No files found.
gcc/config/m68k/m68k.h
View file @
6d808a73
...
@@ -836,8 +836,9 @@ extern enum reg_class regno_reg_class[];
...
@@ -836,8 +836,9 @@ extern enum reg_class regno_reg_class[];
/* If we generate an insn to push BYTES bytes,
/* If we generate an insn to push BYTES bytes,
this says how many the stack pointer really advances by.
this says how many the stack pointer really advances by.
On the 68000, sp@- in a byte insn really pushes a word. */
On the 68000, sp@- in a byte insn really pushes a word.
#define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & ~1)
On the 5200 (coldfire), sp@- in a byte insn pushes just a byte. */
#define PUSH_ROUNDING(BYTES) (TARGET_5200 ? BYTES : ((BYTES) + 1) & ~1)
/* Offset of first parameter from the argument pointer register value. */
/* Offset of first parameter from the argument pointer register value. */
#define FIRST_PARM_OFFSET(FNDECL) 8
#define FIRST_PARM_OFFSET(FNDECL) 8
...
...
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