From: hubicka Date: Sun, 27 Oct 2019 10:26:11 +0000 (+0000) Subject: * ipa-prop.c (ipa_propagate_indirect_call_infos): Do not remove X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f37ffcc5675bb75a4835adcc1c87227a2a7041d9;p=thirdparty%2Fgcc.git * ipa-prop.c (ipa_propagate_indirect_call_infos): Do not remove jump functions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@277486 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fe812a4cb432..4751148a42e5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2019-10-27 Jan Hubicka + + * ipa-prop.c (ipa_propagate_indirect_call_infos): Do not remove + jump functions. + 2019-10-27 Eric Botcazou * cgraph.c (cgraph_node::rtl_info): Fix cut&pasto in comment. diff --git a/gcc/ipa-prop.c b/gcc/ipa-prop.c index 1290a2f39433..edab920e8f49 100644 --- a/gcc/ipa-prop.c +++ b/gcc/ipa-prop.c @@ -3706,7 +3706,6 @@ ipa_propagate_indirect_call_infos (struct cgraph_edge *cs, propagate_controlled_uses (cs); changed = propagate_info_to_inlined_callees (cs, cs->callee, new_edges); - ipa_edge_args_sum->remove (cs); return changed; }