diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2014-08-20 15:55:06 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2014-08-20 13:55:06 +0000 |
commit | 8605403e2bcb731d5f1c8579a9c2ea3436e2fb27 (patch) | |
tree | d02afd479c74875a28f01dba8b1c20718de3c062 /gcc/ipa-inline.c | |
parent | 3ba421e8becbd17526a88ec76226d7213b96af14 (diff) | |
download | gcc-8605403e2bcb731d5f1c8579a9c2ea3436e2fb27.zip gcc-8605403e2bcb731d5f1c8579a9c2ea3436e2fb27.tar.gz gcc-8605403e2bcb731d5f1c8579a9c2ea3436e2fb27.tar.bz2 |
cgraphunit.c (ipa_passes, compile): Reshedule symtab_remove_unreachable_nodes passes; update comments.
* cgraphunit.c (ipa_passes, compile): Reshedule
symtab_remove_unreachable_nodes passes; update comments.
* ipa-inline.c (pass_data_ipa_inline): Do not schedule
TODO_remove_functions before the pass; the functions ought to be
already removed.
* ipa.c (pass_data_ipa_free_inline_summary): Enable dump; schedule
TODO_remove_functions.
* passes.c (pass_data_early_local_passes): Do not schedule function
removal.
(execute_one_pass): Fix call of symtab_remove_unreachable_nodes.
* lto.c (read_cgraph_and_symbols): Fix symtab_remove_unreachable_nodes
call.
(do_whole_program_analysis): Only sanity check that IPA passes cleans up.
* testsuite/g++.dg/ipa/devirt-17.C: Update template.
* testsuite/g++.dg/ipa/devirt-16.C: Update template.
From-SVN: r214224
Diffstat (limited to 'gcc/ipa-inline.c')
-rw-r--r-- | gcc/ipa-inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c index 5f1c9b0..314262b 100644 --- a/gcc/ipa-inline.c +++ b/gcc/ipa-inline.c @@ -2519,7 +2519,7 @@ const pass_data pass_data_ipa_inline = 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ - TODO_remove_functions, /* todo_flags_start */ + 0, /* todo_flags_start */ ( TODO_dump_symtab ), /* todo_flags_finish */ }; |