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:
parent
3dcd7d4595
commit
10d6c0d042
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue