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
This commit is contained in:
Andreas Krebbel 2005-02-09 21:29:22 +00:00 committed by Vladimir Makarov
parent 17684d4629
commit dab80c81c6
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
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

View File

@ -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;
}