Commit fd776d28 by Jan Hubicka Committed by Jan Hubicka

ipa-prop.c (update_jump_functions_after_inlining): Watch for missing summaries.

	* ipa-prop.c (update_jump_functions_after_inlining):
	Watch for missing summaries.

From-SVN: r277604
parent b4673569
2019-10-30 Jan Hubicka <hubicka@ucw.cz>
* ipa-prop.c (update_jump_functions_after_inlining):
Watch for missing summaries.
2019-10-30 Richard Biener <rguenther@suse.de> 2019-10-30 Richard Biener <rguenther@suse.de>
PR tree-optimization/65930 PR tree-optimization/65930
...@@ -2660,6 +2660,11 @@ update_jump_functions_after_inlining (struct cgraph_edge *cs, ...@@ -2660,6 +2660,11 @@ update_jump_functions_after_inlining (struct cgraph_edge *cs,
for (i = 0; i < count; i++) for (i = 0; i < count; i++)
{ {
struct ipa_jump_func *dst = ipa_get_ith_jump_func (args, i); struct ipa_jump_func *dst = ipa_get_ith_jump_func (args, i);
if (!top)
{
ipa_set_jf_unknown (dst);
continue;
}
class ipa_polymorphic_call_context *dst_ctx class ipa_polymorphic_call_context *dst_ctx
= ipa_get_ith_polymorhic_call_context (args, i); = ipa_get_ith_polymorhic_call_context (args, i);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment