diff options
Diffstat (limited to 'gcc/tree-into-ssa.c')
-rw-r--r-- | gcc/tree-into-ssa.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index 0c4f80a..0522947 100644 --- a/gcc/tree-into-ssa.c +++ b/gcc/tree-into-ssa.c @@ -1477,7 +1477,15 @@ rewrite_blocks (bool fix_virtual_phis) /* Finalize the dominator walker. */ fini_walk_dominator_tree (&walk_data); + /* Debugging dumps. */ + if (dump_file && (dump_flags & TDF_STATS)) + { + dump_dfa_stats (dump_file); + dump_tree_ssa_stats (dump_file); + } + htab_delete (def_blocks); + def_blocks = NULL; VEC_free (tree_on_heap, block_defs_stack); block_defs_stack = NULL; @@ -1611,13 +1619,6 @@ rewrite_into_ssa (bool all) rewrite_blocks (false); - /* Debugging dumps. */ - if (dump_file && (dump_flags & TDF_STATS)) - { - dump_dfa_stats (dump_file); - dump_tree_ssa_stats (dump_file); - } - /* Free allocated memory. */ FOR_EACH_BB (bb) BITMAP_FREE (dfs[bb->index]); |