diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2002-06-17 08:42:00 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@gcc.gnu.org> | 2002-06-17 08:42:00 +0000 |
commit | 0af5c89673cef3f0cc10076491000e83ac28b4b3 (patch) | |
tree | 2f7ceafa554dd8f8d6c93074b56e9d5b515830ae /gcc/function.c | |
parent | 845b1456d5bdb4ddeff3eb157ead544dec075ad0 (diff) | |
download | gcc-0af5c89673cef3f0cc10076491000e83ac28b4b3.zip gcc-0af5c89673cef3f0cc10076491000e83ac28b4b3.tar.gz gcc-0af5c89673cef3f0cc10076491000e83ac28b4b3.tar.bz2 |
function.c (epilogue_done): Correctly build a sequence of insns for a sibcall epilogue.
* function.c (epilogue_done): Correctly build a sequence of insns for
a sibcall epilogue.
From-SVN: r54702
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 9530677..8c0c6c5 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -7747,7 +7747,8 @@ epilogue_done: continue; start_sequence (); - seq = gen_sibcall_epilogue (); + emit_insn (gen_sibcall_epilogue ()); + seq = get_insns (); end_sequence (); /* Retain a map of the epilogue insns. Used in life analysis to |