diff options
author | Richard Guenther <rguenther@suse.de> | 2012-05-11 14:07:38 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-05-11 14:07:38 +0000 |
commit | 6083578b4123a41fc9001dbb27ea568c3d442ad4 (patch) | |
tree | 0eeb74722c6f05b398c7d62aad2871734e913808 /gcc/tree-pass.h | |
parent | 91077d4ef9381c153b939267cecd8e9c80bc7ec8 (diff) | |
download | gcc-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-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index 1c902bc..aa2959c 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -430,7 +430,6 @@ extern struct gimple_opt_pass pass_tree_ifcombine; extern struct gimple_opt_pass pass_dse; extern struct gimple_opt_pass pass_nrv; extern struct gimple_opt_pass pass_rename_ssa_copies; -extern struct gimple_opt_pass pass_rest_of_compilation; extern struct gimple_opt_pass pass_sink_code; extern struct gimple_opt_pass pass_fre; extern struct gimple_opt_pass pass_check_data_deps; @@ -477,7 +476,6 @@ extern struct simple_ipa_opt_pass pass_ipa_tm; extern struct ipa_opt_pass_d pass_ipa_profile; extern struct ipa_opt_pass_d pass_ipa_cdtor_merge; -extern struct gimple_opt_pass pass_all_optimizations; extern struct gimple_opt_pass pass_cleanup_cfg_post_optimizing; extern struct gimple_opt_pass pass_init_datastructures; extern struct gimple_opt_pass pass_fixup_cfg; @@ -535,7 +533,6 @@ extern struct rtl_opt_pass pass_sms; extern struct rtl_opt_pass pass_sched; extern struct rtl_opt_pass pass_ira; extern struct rtl_opt_pass pass_reload; -extern struct rtl_opt_pass pass_postreload; extern struct rtl_opt_pass pass_clean_state; extern struct rtl_opt_pass pass_branch_prob; extern struct rtl_opt_pass pass_value_profile_transformations; @@ -576,7 +573,6 @@ extern struct rtl_opt_pass pass_rtl_seqabstr; extern struct gimple_opt_pass pass_release_ssa_names; extern struct gimple_opt_pass pass_early_inline; extern struct gimple_opt_pass pass_inline_parameters; -extern struct gimple_opt_pass pass_all_early_optimizations; extern struct gimple_opt_pass pass_update_address_taken; extern struct gimple_opt_pass pass_convert_switch; |