Commit 3876ed16 by Nathan Sidwell Committed by Nathan Sidwell

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
parent 66617831
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
......
......@@ -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);
......
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