haifa-sched.c (schedule_block): Fix thinko in previous assertification patch.

* haifa-sched.c (schedule_block): Fix thinko in previous
	assertification patch.

From-SVN: r98606
This commit is contained in:
Nathan Sidwell 2005-04-23 08:47:17 +00:00 committed by Nathan Sidwell
parent 666178319d
commit 3876ed1631
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-04-23 Nathan Sidwell <nathan@codesourcery.com>
* haifa-sched.c (schedule_block): Fix thinko in previous
assertification patch.
2005-04-23 Richard Sandiford <rsandifo@redhat.com>
* config.gcc (hppa[12]*-*-hpux10*): Add pa/pa-hpux.opt to

View file

@ -2108,7 +2108,7 @@ schedule_block (int b, int rgn_n_insns)
/* Sanity check -- queue must be empty now. Meaningless if region has
multiple bbs. */
gcc_assert (!current_sched_info->queue_must_finish_empty || q_size);
gcc_assert (!current_sched_info->queue_must_finish_empty || !q_size);
/* Update head/tail boundaries. */
head = NEXT_INSN (prev_head);