mirror of git://gcc.gnu.org/git/gcc.git
m68k.c (m68k_expand_epilogue): Emit a return insn with emit_jump_insn.
* config/m68k/m68k.c (m68k_expand_epilogue): Emit a return insn with emit_jump_insn. From-SVN: r125801
This commit is contained in:
parent
ac10986fad
commit
4957072385
|
|
@ -1,3 +1,8 @@
|
||||||
|
2007-06-18 Kazu Hirata <kazu@codesourcery.com>
|
||||||
|
|
||||||
|
* config/m68k/m68k.c (m68k_expand_epilogue): Emit a return
|
||||||
|
insn with emit_jump_insn.
|
||||||
|
|
||||||
2007-06-18 Uros Bizjak <ubizjak@gmail.com>
|
2007-06-18 Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
PR tree-optimization/32383
|
PR tree-optimization/32383
|
||||||
|
|
|
||||||
|
|
@ -1214,7 +1214,7 @@ m68k_expand_epilogue (bool sibcall_p)
|
||||||
EH_RETURN_STACKADJ_RTX));
|
EH_RETURN_STACKADJ_RTX));
|
||||||
|
|
||||||
if (!sibcall_p)
|
if (!sibcall_p)
|
||||||
emit_insn (gen_rtx_RETURN (VOIDmode));
|
emit_jump_insn (gen_rtx_RETURN (VOIDmode));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return true if X is a valid comparison operator for the dbcc
|
/* Return true if X is a valid comparison operator for the dbcc
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue