diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-04-10 11:33:31 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-04-10 11:33:31 +0000 |
commit | ef3baff5fbb72989650869080e1ff6ef7641ab21 (patch) | |
tree | 343ea98fe2010bf89962a5e0aee3ab18b4410a4a /gcc/tree-sra.c | |
parent | 3533e58d2af4447366c24fcf1850274e2a010be9 (diff) | |
download | gcc-ef3baff5fbb72989650869080e1ff6ef7641ab21.tar.gz |
2013-04-10 Richard Biener <rguenther@suse.de>
* passes.c (execute_todo): Do not call ggc_collect conditional here.
(execute_one_ipa_transform_pass): But unconditionally here.
(execute_one_pass): And here.
(init_optimization_passes): Remove reload pass.
* tree-pass.h (TODO_ggc_collect): Remove.
(pass_reload): Likewise.
* ira.c (do_reload): Merge into ...
(ira): ... this.
(rest_of_handle_reload): Remove.
(pass_reload): Likewise.
* config/i386/i386.c (ix86_option_override): Refer to ira instead
of reload for vzeroupper pass placement.
* <everywhere>: Remove TODO_ggc_collect from todo_flags_start
and todo_flags_finish of all passes.
* g++.dg/pr55604.C: Use -fdump-rtl-ira.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@197671 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-sra.c')
-rw-r--r-- | gcc/tree-sra.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-sra.c b/gcc/tree-sra.c index 78efa255b1d..a148a600017 100644 --- a/gcc/tree-sra.c +++ b/gcc/tree-sra.c @@ -3450,7 +3450,6 @@ struct gimple_opt_pass pass_sra_early = 0, /* properties_destroyed */ 0, /* todo_flags_start */ TODO_update_ssa - | TODO_ggc_collect | TODO_verify_ssa /* todo_flags_finish */ } }; @@ -3472,7 +3471,6 @@ struct gimple_opt_pass pass_sra = 0, /* properties_destroyed */ TODO_update_address_taken, /* todo_flags_start */ TODO_update_ssa - | TODO_ggc_collect | TODO_verify_ssa /* todo_flags_finish */ } }; |