Commit 9054261d by Nick Clifton Committed by Nick Clifton

(iq2000_expand_epilogue): Use emit_jump_insn() to generate the return

  instruction.

From-SVN: r89762
parent 50d895a7
2004-10-28 Nick Clifton <nickc@redhat.com>
* config/iq2000/iq2000.c (iq2000_expand_epilogue): Use
emit_jump_insn() to generate the return instruction.
2004-10-28 Kazu Hirata <kazu@cs.umass.edu> 2004-10-28 Kazu Hirata <kazu@cs.umass.edu>
* tree-phinodes.c: Remove trailing whitespace. * tree-phinodes.c: Remove trailing whitespace.
......
...@@ -2297,7 +2297,7 @@ iq2000_expand_epilogue (void) ...@@ -2297,7 +2297,7 @@ iq2000_expand_epilogue (void)
if (iq2000_can_use_return_insn ()) if (iq2000_can_use_return_insn ())
{ {
emit_insn (gen_return ()); emit_jump_insn (gen_return ());
return; return;
} }
......
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