aboutsummaryrefslogtreecommitdiff
path: root/gcc/bt-load.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2013-04-10 11:33:31 +0000
committerRichard Biener <rguenther@suse.de>2013-04-10 11:33:31 +0000
commitea2de378668ba7dbf9737afd9138a5bbaa13a12d (patch)
tree343ea98fe2010bf89962a5e0aee3ab18b4410a4a /gcc/bt-load.c
parent2515435b1f11fd1a0d05f0166ccd6aedd9a4c5f4 (diff)
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: https://gcc.gnu.org/svn/gcc/trunk@197671 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bt-load.c')
-rw-r--r--gcc/bt-load.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/bt-load.c b/gcc/bt-load.c
index 471ae42e4c6..9ca1bd98dcd 100644
--- a/gcc/bt-load.c
+++ b/gcc/bt-load.c
@@ -1520,8 +1520,7 @@ struct rtl_opt_pass pass_branch_target_load_optimize1 =
0, /* properties_provided */
0, /* properties_destroyed */
0, /* todo_flags_start */
- TODO_verify_rtl_sharing |
- TODO_ggc_collect, /* todo_flags_finish */
+ TODO_verify_rtl_sharing, /* todo_flags_finish */
}
};
@@ -1570,6 +1569,6 @@ struct rtl_opt_pass pass_branch_target_load_optimize2 =
0, /* properties_provided */
0, /* properties_destroyed */
0, /* todo_flags_start */
- TODO_ggc_collect, /* todo_flags_finish */
+ 0, /* todo_flags_finish */
}
};