2017-04-19 Richard Biener <rguenther@suse.de>
PR ipa/65972
* auto-profile.c (afdo_vpt_for_early_inline): Update SSA
when needed by AutoPGO.
From-SVN: r246996
+2017-04-19 Richard Biener <rguenther@suse.de>
+
+ PR ipa/65972
+ * auto-profile.c (afdo_vpt_for_early_inline): Update SSA
+ when needed by AutoPGO.
+
2017-04-19 Paulo J. Matos <paulo@matos-sorge.com>
PR lto/50345
if (has_vpt)
{
- optimize_inline_calls (current_function_decl);
+ unsigned todo = optimize_inline_calls (current_function_decl);
+ if (todo & TODO_update_ssa_any)
+ update_ssa (TODO_update_ssa);
return true;
}