Commit caaabe0a by Jakub Jelinek Committed by Jakub Jelinek

i386.c (ix86_pad_returns): Use emit_jump_insn_before instead of emit_insn_before.

	* config/i386/i386.c (ix86_pad_returns): Use emit_jump_insn_before
	instead of emit_insn_before.

From-SVN: r148364
parent eb2969d5
2009-06-11 Jakub Jelinek <jakub@redhat.com>
* config/i386/i386.c (ix86_pad_returns): Use emit_jump_insn_before
instead of emit_insn_before.
2009-06-10 Ian Lance Taylor <iant@google.com> 2009-06-10 Ian Lance Taylor <iant@google.com>
PR bootstrap/40408 PR bootstrap/40408
......
...@@ -27756,7 +27756,7 @@ ix86_pad_returns (void) ...@@ -27756,7 +27756,7 @@ ix86_pad_returns (void)
} }
if (replace) if (replace)
{ {
emit_insn_before (gen_return_internal_long (), ret); emit_jump_insn_before (gen_return_internal_long (), ret);
delete_insn (ret); delete_insn (ret);
} }
} }
......
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