+2004-06-20 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
+
+ * tree-ssa-pre.c (compute_antic): Keep BB_VISITED flag zeroed.
+
2004-06-20 Richard Henderson <rth@redhat.com>
* stmt.c (warn_if_unused_value): Add locus argument.
FOR_ALL_BB (bb)
{
ANTIC_IN (bb) = set_new (true);
- bb->flags &= ~BB_VISITED;
+ if (bb->flags & BB_VISITED)
+ abort ();
}
while (changed)
changed = false;
changed = compute_antic_aux (EXIT_BLOCK_PTR);
}
+ FOR_ALL_BB (bb)
+ {
+ bb->flags &= ~BB_VISITED;
+ }
if (num_iterations > 2 && dump_file && (dump_flags & TDF_STATS))
fprintf (dump_file, "compute_antic required %d iterations\n", num_iterations);
}