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/config/alpha/alpha.md | |
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/config/alpha/alpha.md')
-rw-r--r-- | gcc/config/alpha/alpha.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 04f3ff8..d6fba76 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -6765,7 +6765,7 @@ /* This bit is the same as expand_builtin_longjmp. */ emit_move_insn (hard_frame_pointer_rtx, fp); emit_move_insn (pv, lab); - emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, stack); emit_use (hard_frame_pointer_rtx); emit_use (stack_pointer_rtx); |