aboutsummaryrefslogtreecommitdiff
path: root/gcc/haifa-sched.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2005-04-23 08:47:17 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2005-04-23 08:47:17 +0000
commit3876ed16311271a274204e8210e7224dc37aa094 (patch)
tree235ad804f7b8d0cfb02fabe79769555fb5b99851 /gcc/haifa-sched.c
parent666178319d7c893d63bd321a7487dddd973fe414 (diff)
downloadgcc-3876ed16311271a274204e8210e7224dc37aa094.zip
gcc-3876ed16311271a274204e8210e7224dc37aa094.tar.gz
gcc-3876ed16311271a274204e8210e7224dc37aa094.tar.bz2
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
Diffstat (limited to 'gcc/haifa-sched.c')
-rw-r--r--gcc/haifa-sched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c
index bb8a917..b307bd4 100644
--- a/gcc/haifa-sched.c
+++ b/gcc/haifa-sched.c
@@ -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);