diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-04 13:39:28 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-04 13:39:28 +0000 |
commit | 2f4a154891ab70344579e1a8149cde777d9652eb (patch) | |
tree | 55cb6e737b788acb56569dfe072d4e8a8d06ba31 /gcc/haifa-sched.c | |
parent | b955d4d69b2caa3ae8e15514fe1df80431051e92 (diff) | |
download | gcc-2f4a154891ab70344579e1a8149cde777d9652eb.tar.gz |
* haifa-sched.c (schedule_block): Fix thinko.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30390 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/haifa-sched.c')
-rw-r--r-- | gcc/haifa-sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index e76a5cd00fa..ba96bc40b8b 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -5994,7 +5994,7 @@ schedule_block (bb, rgn_n_insns) still intact. */ temp = insn; - while (SCHED_GROUP_P (insn)) + while (SCHED_GROUP_P (temp)) temp = PREV_INSN (temp); /* Update source block boundaries. */ |