From: Andreas Krebbel Date: Wed, 9 Feb 2005 21:29:22 +0000 (+0000) Subject: haifa-sched.c (schedule_block): Make queued sched group insns return to ready list... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dab80c81c6b7fc84a08f1d1d5745c6861c7082c9;p=gcc.git haifa-sched.c (schedule_block): Make queued sched group insns return to ready list in the next turn. 2005-02-09 Andreas Krebbel * gcc/haifa-sched.c (schedule_block): Make queued sched group insns return to ready list in the next turn. From-SVN: r94775 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 60107b013c3..8243c2f32dd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-02-09 Andreas Krebbel + + * gcc/haifa-sched.c (schedule_block): Make queued sched group + insns return to ready list in the next turn. + + 2005-02-09 Richard Guenther PR middle-end/19402 diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index 9b3ed5e8eff..f7d2a858eb9 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -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; }