diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 699bba0e1fc..a8f77d500e0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-05-15 Eric Christopher + + * cfgcleanup.c (merge_blocks): Fix return value. + 2003-05-15 Eric Christopher * combine.c (expand_compound_operation): Make sure diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index c9e64ed1b48..cfb838cf1f2 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -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;