]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(iq2000_expand_epilogue): Use emit_jump_insn() to generate the return
authorNick Clifton <nickc@redhat.com>
Thu, 28 Oct 2004 14:52:49 +0000 (14:52 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Thu, 28 Oct 2004 14:52:49 +0000 (14:52 +0000)
  instruction.

From-SVN: r89762

gcc/ChangeLog
gcc/config/iq2000/iq2000.c

index ac658b495af123a5a09db8e0831bce79901f7fd8..52538cb0b13dcd91d931e5ea10bb1eacecd4309a 100644 (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.
index a93e7947870c7b7d0f26c2ad4bf1fa3d28565c6e..6871d0aa9561d54794dff86612580c7b9e953171 100644 (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;
     }