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
1be07046
Commit
1be07046
authored
Nov 23, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_function_end): New arg END_BINDINGS.
From-SVN: r6141
parent
0e5eedfe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
gcc/function.c
+8
-2
No files found.
gcc/function.c
View file @
1be07046
...
...
@@ -4887,12 +4887,14 @@ expand_function_start (subr, parms_have_cleanups)
/* Generate RTL for the end of the current function.
FILENAME and LINE are the current position in the source file. */
/* It is up to language-specific callers to do cleanups for parameters. */
/* It is up to language-specific callers to do cleanups for parameters--
or else, supply 1 for END_BINDINGS and we will call expand_end_bindings. */
void
expand_function_end
(
filename
,
line
)
expand_function_end
(
filename
,
line
,
end_bindings
)
char
*
filename
;
int
line
;
int
end_bindings
;
{
register
int
i
;
tree
link
;
...
...
@@ -5022,6 +5024,10 @@ expand_function_end (filename, line)
if
(
return_label
)
emit_label
(
return_label
);
/* C++ uses this. */
if
(
end_bindings
)
expand_end_bindings
(
0
,
0
,
0
);
/* If we had calls to alloca, and this machine needs
an accurate stack pointer to exit the function,
insert some code to save and restore the stack pointer. */
...
...
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