aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2012-05-11 14:07:38 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2012-05-11 14:07:38 +0000
commit6083578b4123a41fc9001dbb27ea568c3d442ad4 (patch)
tree0eeb74722c6f05b398c7d62aad2871734e913808 /gcc/tree-ssa.c
parent91077d4ef9381c153b939267cecd8e9c80bc7ec8 (diff)
downloadgcc-6083578b4123a41fc9001dbb27ea568c3d442ad4.zip
gcc-6083578b4123a41fc9001dbb27ea568c3d442ad4.tar.gz
gcc-6083578b4123a41fc9001dbb27ea568c3d442ad4.tar.bz2
tree-pass.h (pass_rest_of_compilation, [...]): Remove.
2012-05-11 Richard Guenther <rguenther@suse.de> * tree-pass.h (pass_rest_of_compilation, pass_all_optimizations, pass_postreload, pass_all_early_optimizations): Remove. * passes.c (pass_all_optimizations, pass_postreload, pass_all_early_optimizations): Make static. (pass_rest_of_compilation): Likewise. Make it an RTL_PASS. * tree-phinodes.c (init_phinodes, fini_phinodes): Remove. * tree-ssa.c (init_tree_ssa): Do not call init_phinodes. (delete_tree_ssa): Do not call fini_phinodes. * tree-flow.h (init_phinodes, fini_phinodes): Remove. From-SVN: r187407
Diffstat (limited to 'gcc/tree-ssa.c')
-rw-r--r--gcc/tree-ssa.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-ssa.c b/gcc/tree-ssa.c
index 32a01fb..2655d26 100644
--- a/gcc/tree-ssa.c
+++ b/gcc/tree-ssa.c
@@ -1117,7 +1117,6 @@ init_tree_ssa (struct function *fn)
uid_ssaname_map_eq, NULL);
pt_solution_reset (&fn->gimple_df->escaped);
init_ssanames (fn, 0);
- init_phinodes ();
}
/* Do the actions required to initialize internal data structures used
@@ -1173,7 +1172,6 @@ delete_tree_ssa (void)
cfun->gimple_df->referenced_vars = NULL;
fini_ssanames ();
- fini_phinodes ();
/* We no longer maintain the SSA operand cache at this point. */
if (ssa_operands_active ())