cfgcleanup.c (merge_blocks): Fix return value.

2003-05-15  Eric Christopher  <echristo@redhat.com>

        * cfgcleanup.c (merge_blocks): Fix return value.

From-SVN: r66854
This commit is contained in:
Eric Christopher 2003-05-16 02:11:26 +00:00 committed by Eric Christopher
parent 3dcd7d4595
commit 10d6c0d042
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-05-15 Eric Christopher <echristo@redhat.com>
* cfgcleanup.c (merge_blocks): Fix return value.
2003-05-15 Eric Christopher <echristo@redhat.com>
* combine.c (expand_compound_operation): Make sure

View File

@ -888,7 +888,7 @@ merge_blocks (e, b, c, mode)
return next == ENTRY_BLOCK_PTR ? next->next_bb : next;
}
return false;
return NULL;
}
@ -1479,7 +1479,7 @@ try_crossjump_to_edge (mode, e1, e2)
}
}
#endif
/* Avoid splitting if possible. */
if (newpos2 == src2->head)
redirect_to = src2;