Commit 0777d852 by Diego Novillo Committed by Diego Novillo

tree-ssa-propagate.c (ssa_prop_init): Use FOR_ALL_BB instead of FOR_EACH_BB.


	* tree-ssa-propagate.c (ssa_prop_init): Use FOR_ALL_BB instead
	of FOR_EACH_BB.

From-SVN: r90860
parent 5cd37749
2004-11-18 Diego Novillo <dnovillo@redhat.com>
* tree-ssa-propagate.c (ssa_prop_init): Use FOR_ALL_BB instead
of FOR_EACH_BB.
2004-11-18 Jon Grimm <jgrimm2@us.ibm.com> 2004-11-18 Jon Grimm <jgrimm2@us.ibm.com>
* Makefile.in (macro_list): Depend on s-macro_list. * Makefile.in (macro_list): Depend on s-macro_list.
......
...@@ -477,8 +477,9 @@ ssa_prop_init (void) ...@@ -477,8 +477,9 @@ ssa_prop_init (void)
VARRAY_BB_INIT (cfg_blocks, 20, "cfg_blocks"); VARRAY_BB_INIT (cfg_blocks, 20, "cfg_blocks");
/* Initially assume that every edge in the CFG is not executable. */ /* Initially assume that every edge in the CFG is not executable
FOR_EACH_BB (bb) (including the edges coming out of ENTRY_BLOCK_PTR). */
FOR_ALL_BB (bb)
{ {
block_stmt_iterator si; block_stmt_iterator si;
......
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