Commit 57e42286 by Devang Patel Committed by Devang Patel

* tree-if-conv.c (clean_predicate_lists): Update gcc_assert check.

From-SVN: r90756
parent 66083422
2004-11-16 Devang Patel <dpatel@apple.com>
* tree-if-conv.c (clean_predicate_lists): Update gcc_assert check.
2004-11-16 Eric Christopher <echristo@redhat.com>
* config/mips/mips.c: Use rtl _P predicates.
......
......@@ -658,7 +658,7 @@ static void
clean_predicate_lists (struct loop *loop)
{
#ifdef ENABLE_CHECKING
gcc_assert (loop->num_nodes == 2);
gcc_assert (loop->num_nodes == 2 || loop->num_nodes == 1);
#endif
loop->header->aux = NULL;
loop->latch->aux = NULL;
......
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