diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-03 21:56:58 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-03 21:56:58 +0000 |
commit | e9c97615131e109bdda94622ec15f7c2007d4121 (patch) | |
tree | 1bc97a08baf05002d630ce3689e67be7e0a590fb /gcc/stmt.c | |
parent | 1fda60c695b7a1bb7303f79a0b6d4b792db0efe0 (diff) | |
download | gcc-e9c97615131e109bdda94622ec15f7c2007d4121.tar.gz |
* explow.c (emit_stack_save): Remove 'after' parameter.
(emit_stack_restore): Likewise.
* expr.h: Update to match.
* builtins.c, calls.c, stmt.c: Likewise.
* config/alpha/alpha.md, config/avr/avr.md: Likewise.
* config/mips/mips.md, config/pa/pa.md, config/vax/vax.md: Likewise.
* function.c (expand_function_end): Insert the emit_stack_save
sequence before parm_birth_insn instead of after.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170663 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 7d4cbb0cb4c..b65c6db4642 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -2006,7 +2006,7 @@ expand_stack_save (void) rtx ret = NULL_RTX; do_pending_stack_adjust (); - emit_stack_save (SAVE_BLOCK, &ret, NULL_RTX); + emit_stack_save (SAVE_BLOCK, &ret); return ret; } @@ -2017,7 +2017,7 @@ expand_stack_restore (tree var) rtx sa = expand_normal (var); sa = convert_memory_address (Pmode, sa); - emit_stack_restore (SAVE_BLOCK, sa, NULL_RTX); + emit_stack_restore (SAVE_BLOCK, sa); } /* Do the insertion of a case label into case_list. The labels are |