Commit 10d6c0d0 by Eric Christopher Committed by Eric Christopher

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
parent 3dcd7d45
2003-05-15 Eric Christopher <echristo@redhat.com>
* cfgcleanup.c (merge_blocks): Fix return value.
2003-05-15 Eric Christopher <echristo@redhat.com> 2003-05-15 Eric Christopher <echristo@redhat.com>
* combine.c (expand_compound_operation): Make sure * combine.c (expand_compound_operation): Make sure
......
...@@ -888,7 +888,7 @@ merge_blocks (e, b, c, mode) ...@@ -888,7 +888,7 @@ merge_blocks (e, b, c, mode)
return next == ENTRY_BLOCK_PTR ? next->next_bb : next; return next == ENTRY_BLOCK_PTR ? next->next_bb : next;
} }
return false; return NULL;
} }
...@@ -1479,7 +1479,7 @@ try_crossjump_to_edge (mode, e1, e2) ...@@ -1479,7 +1479,7 @@ try_crossjump_to_edge (mode, e1, e2)
} }
} }
#endif #endif
/* Avoid splitting if possible. */ /* Avoid splitting if possible. */
if (newpos2 == src2->head) if (newpos2 == src2->head)
redirect_to = src2; redirect_to = src2;
......
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