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
01c1558a
Commit
01c1558a
authored
Jan 03, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(push_function_context_to, pop_function_context_from): Save and
restore current_function_args_info. From-SVN: r13353
parent
6fea3f8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
gcc/function.c
+3
-1
No files found.
gcc/function.c
View file @
01c1558a
/* Expands front end tree to back end RTL for GNU C-Compiler
Copyright (C) 1987, 88, 89, 91-9
5, 1996
Free Software Foundation, Inc.
Copyright (C) 1987, 88, 89, 91-9
6, 1997
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -518,6 +518,7 @@ push_function_context_to (context)
p
->
temp_slot_level
=
temp_slot_level
;
p
->
fixup_var_refs_queue
=
0
;
p
->
epilogue_delay_list
=
current_function_epilogue_delay_list
;
p
->
args_info
=
current_function_args_info
;
save_tree_status
(
p
,
context
);
save_storage_status
(
p
);
...
...
@@ -596,6 +597,7 @@ pop_function_context_from (context)
temp_slot_level
=
p
->
temp_slot_level
;
current_function_epilogue_delay_list
=
p
->
epilogue_delay_list
;
reg_renumber
=
0
;
current_function_args_info
=
p
->
args_info
;
restore_tree_status
(
p
);
restore_storage_status
(
p
);
...
...
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