aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-inline.c
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2009-04-03 20:15:40 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2009-04-03 20:15:40 +0000
commit535b544aa70749ecce8ea8914831479ece53995f (patch)
tree1c2b91d7f8ae11f28c85eefe1858717c4e575f3d /gcc/ipa-inline.c
parent6f9c9d6d47751e980f0ca831f02e91c0ac424916 (diff)
downloadgcc-535b544aa70749ecce8ea8914831479ece53995f.zip
gcc-535b544aa70749ecce8ea8914831479ece53995f.tar.gz
gcc-535b544aa70749ecce8ea8914831479ece53995f.tar.bz2
omp-low.c (pass_expand_omp): Don't claim to provide PROP_gimple_lomp.
* omp-low.c (pass_expand_omp): Don't claim to provide PROP_gimple_lomp. (execute_lower_omp): Always run but take the short way out if -fopenmp is not given. (gate_lower_omp): Remove, forcing the pass manager to always run the pass and always set PROP_gimple_lomp. (pass_lower_omp): Remove gate function. * matrix-reorg.c (pass_ipa_matrix_reorg): Don't claim to provide PROP_trees. Instead, require it. * ipa-cp.c (pass_ipa_cp): Likewise. * ipa-inline.c (pass_early_inline): Don't claim to provide PROP_cfg. (pass_ipa_early_inline, pass_inline_parameters, pass_ipa_inline): Idem. * tree-profile.c (pass_tree_profile): Don't claim to provide PROP_cfg and PROP_gimple_leh. From-SVN: r145518
Diffstat (limited to 'gcc/ipa-inline.c')
-rw-r--r--gcc/ipa-inline.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c
index 5da4b4c..dfc346a 100644
--- a/gcc/ipa-inline.c
+++ b/gcc/ipa-inline.c
@@ -1561,7 +1561,7 @@ struct gimple_opt_pass pass_early_inline =
0, /* static_pass_number */
TV_INLINE_HEURISTICS, /* tv_id */
0, /* properties_required */
- PROP_cfg, /* properties_provided */
+ 0, /* properties_provided */
0, /* properties_destroyed */
0, /* todo_flags_start */
TODO_dump_func /* todo_flags_finish */
@@ -1591,7 +1591,7 @@ struct simple_ipa_opt_pass pass_ipa_early_inline =
0, /* static_pass_number */
TV_INLINE_HEURISTICS, /* tv_id */
0, /* properties_required */
- PROP_cfg, /* properties_provided */
+ 0, /* properties_provided */
0, /* properties_destroyed */
0, /* todo_flags_start */
TODO_dump_cgraph /* todo_flags_finish */
@@ -1653,7 +1653,7 @@ struct gimple_opt_pass pass_inline_parameters =
0, /* static_pass_number */
TV_INLINE_HEURISTICS, /* tv_id */
0, /* properties_required */
- PROP_cfg, /* properties_provided */
+ 0, /* properties_provided */
0, /* properties_destroyed */
0, /* todo_flags_start */
0 /* todo_flags_finish */
@@ -1772,7 +1772,7 @@ struct ipa_opt_pass pass_ipa_inline =
0, /* static_pass_number */
TV_INLINE_HEURISTICS, /* tv_id */
0, /* properties_required */
- PROP_cfg, /* properties_provided */
+ 0, /* properties_provided */
0, /* properties_destroyed */
TODO_remove_functions, /* todo_flags_finish */
TODO_dump_cgraph | TODO_dump_func