mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 08:00:28 +08:00
Fix ppc-darwin bootstrap failure.
* emit-rtl.c (try_split): Check INSN_P before may_trap_p call. From-SVN: r87125
This commit is contained in:
parent
ff8cea7e3e
commit
d3a583b1fd
@ -1,3 +1,7 @@
|
||||
2004-09-06 James E Wilson <wilson@specifixinc.com>
|
||||
|
||||
* emit-rtl.c (try_split): Check INSN_P before may_trap_p call.
|
||||
|
||||
2004-09-06 Eric Botcazou <ebotcazou@libertysurf.fr>
|
||||
|
||||
* final.c (output_in_slot): Delete.
|
||||
|
@ -3327,7 +3327,7 @@ try_split (rtx pat, rtx trial, int last)
|
||||
while (insn != NULL_RTX)
|
||||
{
|
||||
if (CALL_P (insn)
|
||||
|| (flag_non_call_exceptions
|
||||
|| (flag_non_call_exceptions && INSN_P (insn)
|
||||
&& may_trap_p (PATTERN (insn))))
|
||||
REG_NOTES (insn)
|
||||
= gen_rtx_EXPR_LIST (REG_EH_REGION,
|
||||
|
Loading…
x
Reference in New Issue
Block a user