Commit a3b609df by Kazu Hirata Committed by Kazu Hirata

* tree-ssa-dom.c: Fix formatting.

From-SVN: r98601
parent 721425b6
......@@ -9,6 +9,8 @@
* tree.h: Add prototypes for fold_unary, fold_binary,
fold_ternary.
* tree-ssa-dom.c: Fix formatting.
2005-04-22 Diego Novillo <dnovillo@redhat.com>
* Makefile.in (tree-into-ssa.o): Add dependency on PARAMS_H.
......
......@@ -431,17 +431,18 @@ tree_ssa_dominator_optimize (void)
free_all_edge_infos ();
{
block_stmt_iterator bsi;
basic_block bb;
FOR_EACH_BB (bb)
{
for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
block_stmt_iterator bsi;
basic_block bb;
FOR_EACH_BB (bb)
{
update_stmt_if_modified (bsi_stmt (bsi));
for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
{
update_stmt_if_modified (bsi_stmt (bsi));
}
}
}
}
/* Thread jumps, creating duplicate blocks as needed. */
cfg_altered |= thread_through_all_blocks ();
......@@ -1238,7 +1239,6 @@ record_equivalences_from_phis (basic_block bb)
if (i == PHI_NUM_ARGS (phi))
bitmap_set_bit (nonzero_vars, SSA_NAME_VERSION (PHI_RESULT (phi)));
}
}
......
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