Commit 26e75214 by Kazu Hirata Committed by Kazu Hirata

* tree-cfg.c (tree_can_merge_blocks_p): Reorder two checks.

From-SVN: r93767
parent e3961da6
2005-01-17 Kazu Hirata <kazu@cs.umass.edu>
* tree-cfg.c (tree_can_merge_blocks_p): Reorder two checks.
2005-01-17 Ian Lance Taylor <ian@airs.com>
PR middle-end/13127:
......
......@@ -1217,12 +1217,12 @@ tree_can_merge_blocks_p (basic_block a, basic_block b)
if (EDGE_SUCC (a, 0)->dest != b)
return false;
if (b == EXIT_BLOCK_PTR)
return false;
if (EDGE_COUNT (b->preds) > 1)
return false;
if (b == EXIT_BLOCK_PTR)
return false;
/* If A ends by a statement causing exceptions or something similar, we
cannot merge the blocks. */
stmt = last_stmt (a);
......
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