Commit dab80c81 by Andreas Krebbel Committed by Vladimir Makarov

haifa-sched.c (schedule_block): Make queued sched group insns return to ready…

haifa-sched.c (schedule_block): Make queued sched group insns return to ready list in the next turn.

2005-02-09  Andreas Krebbel  <krebbel1@de.ibm.com>

	* gcc/haifa-sched.c (schedule_block): Make queued sched group
	insns return to ready list in the next turn.

From-SVN: r94775
parent 17684d46
2005-02-09 Andreas Krebbel <krebbel1@de.ibm.com>
* gcc/haifa-sched.c (schedule_block): Make queued sched group
insns return to ready list in the next turn.
2005-02-09 Richard Guenther <rguenth@gcc.gnu.org>
PR middle-end/19402
......
......@@ -2052,6 +2052,12 @@ schedule_block (int b, int rgn_n_insns)
if (cost >= 1)
{
queue_insn (insn, cost);
if (SCHED_GROUP_P (insn))
{
advance = cost;
break;
}
continue;
}
......
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