Commit 0af5c896 by Richard Earnshaw Committed by Richard Earnshaw

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
parent 845b1456
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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment