Commit 4f66c9bc by Bernd Schmidt Committed by Bernd Schmidt

re PR bootstrap/54643 (Build hangs compiling unwind-arm.c)

	PR bootstrap/54643
	* haifa-sched.c (schedule_block): Skip find_modifiable_mems if using
	SCHED_PRESSURE_MODEL.

From-SVN: r191595
parent 8604dde0
2012-09-20 Bernd Schmidt <bernds@codesourcery.com>
PR bootstrap/54643
* haifa-sched.c (schedule_block): Skip find_modifiable_mems if using
SCHED_PRESSURE_MODEL.
2012-09-20 Joern Rennecke <joern.rennecke@embecosm.com>
* rtlanal.c (dead_or_set_regno_p): Fix COND_EXEC handling.
......
......@@ -5854,7 +5854,8 @@ schedule_block (basic_block *target_bb)
rtx head = NEXT_INSN (prev_head);
rtx tail = PREV_INSN (next_tail);
if ((current_sched_info->flags & DONT_BREAK_DEPENDENCIES) == 0)
if ((current_sched_info->flags & DONT_BREAK_DEPENDENCIES) == 0
&& sched_pressure != SCHED_PRESSURE_MODEL)
find_modifiable_mems (head, tail);
/* We used to have code to avoid getting parameters moved from hard
......
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