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
40d05551
Commit
40d05551
authored
Jun 27, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fixup_stack_1): Handle current_function_internal_arg_pointer.
From-SVN: r4777
parent
5e9bec99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gcc/function.c
+3
-2
No files found.
gcc/function.c
View file @
40d05551
...
@@ -1772,8 +1772,9 @@ fixup_stack_1 (x, insn)
...
@@ -1772,8 +1772,9 @@ fixup_stack_1 (x, insn)
(displacement is too large), compute the sum in a register. */
(displacement is too large), compute the sum in a register. */
if
(
GET_CODE
(
ad
)
==
PLUS
if
(
GET_CODE
(
ad
)
==
PLUS
&&
GET_CODE
(
XEXP
(
ad
,
0
))
==
REG
&&
GET_CODE
(
XEXP
(
ad
,
0
))
==
REG
&&
REGNO
(
XEXP
(
ad
,
0
))
>=
FIRST_VIRTUAL_REGISTER
&&
((
REGNO
(
XEXP
(
ad
,
0
))
>=
FIRST_VIRTUAL_REGISTER
&&
REGNO
(
XEXP
(
ad
,
0
))
<=
LAST_VIRTUAL_REGISTER
&&
REGNO
(
XEXP
(
ad
,
0
))
<=
LAST_VIRTUAL_REGISTER
)
||
XEXP
(
ad
,
0
)
==
current_function_internal_arg_pointer
)
&&
GET_CODE
(
XEXP
(
ad
,
1
))
==
CONST_INT
)
&&
GET_CODE
(
XEXP
(
ad
,
1
))
==
CONST_INT
)
{
{
rtx
temp
,
seq
;
rtx
temp
,
seq
;
...
...
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