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

From-SVN: r90756
This commit is contained in:
Devang Patel 2004-11-16 12:02:48 -08:00 committed by Devang Patel
parent 66083422fd
commit 57e4228616
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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;