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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/function.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f4c574d..0fb38c6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-17 Richard Earnshaw (rearnsha@arm.com) + + * function.c (epilogue_done): Correctly build a sequence of insns for + a sibcall epilogue. + 2002-06-17 Nick Clifton <nickc@cambridge.redhat.com> * config/fr30/fr30.h (CUMULATIVE_ARGS): Replace typedef with 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 |