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
b8c752c8
Commit
b8c752c8
authored
Apr 16, 2000
by
Ulrich Drepper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ix86_expand_epilogue): Yes, the x86 can pop 64k at once using ret $N.
From-SVN: r33174
parent
409f8483
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/config/i386/i386.c
+4
-4
No files found.
gcc/config/i386/i386.c
View file @
b8c752c8
...
...
@@ -2106,11 +2106,11 @@ ix86_expand_epilogue (emit_return)
{
rtx
popc
=
GEN_INT
(
current_function_pops_args
);
/* i386 can only pop
32K bytes (maybe 64K? Is it signed?). If
asked to pop more, pop return address, do explicit add, and jump
indirectly to the
caller. */
/* i386 can only pop
64K bytes. If asked to pop more, pop
return address, do explicit add, and jump indirectly to the
caller. */
if
(
current_function_pops_args
>=
32768
)
if
(
current_function_pops_args
>=
65536
)
{
rtx
ecx
=
gen_rtx_REG
(
SImode
,
2
);
...
...
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