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

instruction.

From-SVN: r89762
This commit is contained in:
Nick Clifton 2004-10-28 14:52:49 +00:00 committed by Nick Clifton
parent 50d895a7d6
commit 9054261dcf
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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>
* tree-phinodes.c: Remove trailing whitespace.

View file

@ -2297,7 +2297,7 @@ iq2000_expand_epilogue (void)
if (iq2000_can_use_return_insn ())
{
emit_insn (gen_return ());
emit_jump_insn (gen_return ());
return;
}