Commit f7a60085 by Jeff Law Committed by Jeff Law

re PR libgomp/47464 (Many gomp failures)


	PR rtl-optimization/47464
	* df-problems.c (can_move_insn_across): Use may_trap_or_fault_p
	rather than may_trap_p as needed.

From-SVN: r169310
parent 753e7b85
2011-01-26 Jeff Law <law@redhat.com>
PR rtl-optimization/47464
* df-problems.c (can_move_insn_across): Use may_trap_or_fault_p
rather than may_trap_p as needed.
2011-01-26 DJ Delorie <dj@redhat.com>
PR rtl-optimization/46878
......
......@@ -3960,7 +3960,7 @@ can_move_insns_across (rtx from, rtx to, rtx across_from, rtx across_to,
break;
if (NONDEBUG_INSN_P (insn))
{
if (may_trap_p (PATTERN (insn))
if (may_trap_or_fault_p (PATTERN (insn))
&& (trapping_insns_in_across || other_branch_live != NULL))
break;
......
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