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
This commit is contained in:
parent
b4673569c2
commit
fd776d2834
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
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>
|
||||
|
||||
PR tree-optimization/65930
|
||||
|
|
|
@ -2660,6 +2660,11 @@ update_jump_functions_after_inlining (struct cgraph_edge *cs,
|
|||
for (i = 0; i < count; 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
|
||||
= ipa_get_ith_polymorhic_call_context (args, i);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue