From: Jan Hubicka Date: Sat, 22 Dec 2018 21:13:41 +0000 (+0100) Subject: * ipa-utils.c (ipa_merge_profiles): Recompute summaries. X-Git-Tag: upstream/12.2.0~27157 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=61e8dc4b93e6c177eb971e826e29bc195c283fda;p=platform%2Fupstream%2Fgcc.git * ipa-utils.c (ipa_merge_profiles): Recompute summaries. From-SVN: r267361 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2db37e7..fb49cc0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-12-21 Jan Hubicka + + * ipa-utils.c (ipa_merge_profiles): Recompute summaries. + 2018-12-21 Jakub Jelinek PR middle-end/85594 diff --git a/gcc/ipa-utils.c b/gcc/ipa-utils.c index 3345f9d..422d8d0 100644 --- a/gcc/ipa-utils.c +++ b/gcc/ipa-utils.c @@ -643,7 +643,9 @@ ipa_merge_profiles (struct cgraph_node *dst, } if (!preserve_body) src->release_body (); - ipa_update_overall_fn_summary (dst); + /* Update summary. */ + symtab->call_cgraph_removal_hooks (dst); + symtab->call_cgraph_insertion_hooks (dst); } /* TODO: if there is no match, we can scale up. */ src->decl = oldsrcdecl;