diff options
author | Richard Henderson <rth@redhat.com> | 2011-03-03 13:56:58 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2011-03-03 13:56:58 -0800 |
commit | 9eac0f2a07b6e919feacfcd30c19a3058dd58e01 (patch) | |
tree | 1bc97a08baf05002d630ce3689e67be7e0a590fb /gcc/stmt.c | |
parent | dfee1406b912a5d6fa1d199414121e8c8c8e265d (diff) | |
download | gcc-9eac0f2a07b6e919feacfcd30c19a3058dd58e01.zip gcc-9eac0f2a07b6e919feacfcd30c19a3058dd58e01.tar.gz gcc-9eac0f2a07b6e919feacfcd30c19a3058dd58e01.tar.bz2 |
explow.c (emit_stack_save): Remove 'after' parameter.
* 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.
From-SVN: r170663
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |