summaryrefslogtreecommitdiff
path: root/gcc/passes.def
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@ucw.cz>2018-11-20 14:25:04 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2018-11-20 13:25:04 +0000
commit12485662c00914ed132d950f1329fdaf32c11a3c (patch)
tree915c311dd930a542e608132872f89e56f2d114e0 /gcc/passes.def
parent8c944c97a2e5a264779ad1d448f97319f471275a (diff)
re PR ipa/87706 (Inlined functions trigger invalid -Wmissing-profile warning)
PR ipa/87706 * ipa-fnsummary.c (pass_ipa_fnsummary): Do not remove functions * ipa.c (possible_inline_candidate_p): Break out from .. (process_references): ... here ; drop before_inlining_p; cleanup handling of alises. (walk_polymorphic_call_targets): Likewise. (symbol_table::remove_unreachable_nodes): Likewise. * passes.c (pass_data_ipa_remove_symbols): New structure. (pass_ipa_remove_symbols): New pass. (make_pass_ipa_remove_symbols): New functoin. * passes.def (pass_ipa_remove_symbols): Schedule after early passes. From-SVN: r266315
Diffstat (limited to 'gcc/passes.def')
-rw-r--r--gcc/passes.def1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/passes.def b/gcc/passes.def
index 24f212c8e31..82ad9404b9e 100644
--- a/gcc/passes.def
+++ b/gcc/passes.def
@@ -106,6 +106,7 @@ along with GCC; see the file COPYING3. If not see
NEXT_PASS (pass_local_fn_summary);
POP_INSERT_PASSES ()
+ NEXT_PASS (pass_ipa_remove_symbols);
NEXT_PASS (pass_ipa_oacc);
PUSH_INSERT_PASSES_WITHIN (pass_ipa_oacc)
NEXT_PASS (pass_ipa_pta);