Commit 5e35992a by Kazu Hirata Committed by Kazu Hirata

function.c (thread_prologue_and_epilogue_insns): Remove i and newinsn.

	* function.c (thread_prologue_and_epilogue_insns): Remove i
	and newinsn.

From-SVN: r96182
parent ab743bf6
...@@ -16,6 +16,9 @@ ...@@ -16,6 +16,9 @@
* real.c (real_nan): Remove neg. * real.c (real_nan): Remove neg.
* function.c (thread_prologue_and_epilogue_insns): Remove i
and newinsn.
2005-03-08 Jeff Law <law@redhat.com> 2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed * tree-cfg.c (cleanup_control_flow): If removal of a computed
......
...@@ -5344,8 +5344,6 @@ epilogue_done: ...@@ -5344,8 +5344,6 @@ epilogue_done:
{ {
basic_block bb = e->src; basic_block bb = e->src;
rtx insn = BB_END (bb); rtx insn = BB_END (bb);
rtx i;
rtx newinsn;
if (!CALL_P (insn) if (!CALL_P (insn)
|| ! SIBLING_CALL_P (insn)) || ! SIBLING_CALL_P (insn))
...@@ -5365,8 +5363,7 @@ epilogue_done: ...@@ -5365,8 +5363,7 @@ epilogue_done:
record_insns (seq, &sibcall_epilogue); record_insns (seq, &sibcall_epilogue);
set_insn_locators (seq, epilogue_locator); set_insn_locators (seq, epilogue_locator);
i = PREV_INSN (insn); emit_insn_before (seq, insn);
newinsn = emit_insn_before (seq, insn);
ei_next (&ei); ei_next (&ei);
} }
#endif #endif
......
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