From 8f28be81e32a7117e0848bb8559e90376570e4d2 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Fri, 1 Oct 2004 14:51:25 +0000 Subject: tree-cfg.c (cleanup_tree_cfg): Pull a call to cleanup_control_flow() out of the while loop. * tree-cfg.c (cleanup_tree_cfg): Pull a call to cleanup_control_flow() out of the while loop. From-SVN: r88395 --- gcc/tree-cfg.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'gcc/tree-cfg.c') diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 025e677..72f7378 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -717,16 +717,22 @@ cleanup_tree_cfg (void) timevar_push (TV_TREE_CLEANUP_CFG); - /* These three transformations can cascade, so we iterate on them until + retval = cleanup_control_flow (); + + /* These two transformations can cascade, so we iterate on them until nothing changes. */ while (something_changed) { - something_changed = cleanup_control_flow (); - something_changed |= delete_unreachable_blocks (); + something_changed = delete_unreachable_blocks (); something_changed |= thread_jumps (); retval |= something_changed; } +#ifdef ENABLE_CHECKING + if (retval) + gcc_assert (!cleanup_control_flow ()); +#endif + /* Merging the blocks creates no new opportunities for the other optimizations, so do it here. */ merge_seq_blocks (); -- cgit v1.1