diff options
| author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-22 15:11:06 +0000 |
|---|---|---|
| committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-22 15:11:06 +0000 |
| commit | 2d5e9bd761df15e11c77300d91683e5f78be45ac (patch) | |
| tree | 83d41355265dad8ac773aa85fdc2733f21c163c9 | |
| parent | 309237c05c438f4d872caee1e15990e986d6a200 (diff) | |
| download | ppe42-gcc-2d5e9bd761df15e11c77300d91683e5f78be45ac.tar.gz ppe42-gcc-2d5e9bd761df15e11c77300d91683e5f78be45ac.zip | |
* tree-into-ssa.c (rewrite_blocks): Move debug dumps from ...
(rewrite_into_ssa): ... here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95395 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/tree-into-ssa.c | 15 |
2 files changed, 13 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fa3709688c9..83a8a0f9f6c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-02-22 Diego Novillo <dnovillo@redhat.com> + + * tree-into-ssa.c (rewrite_blocks): Move debug dumps from ... + (rewrite_into_ssa): ... here. + 2005-02-21 Alexandre Oliva <aoliva@redhat.com> PR tree-optimization/19786 diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index 0c4f80aa591..05229470901 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]); |

