2020-01-10 Martin Liska <mliska@suse.cz>
PR ipa/93217
* ipa-inline-analysis.c (offline_size): Make proper parenthesis
encapsulation that was there before r280040.
From-SVN: r280103
+2020-01-10 Martin Liska <mliska@suse.cz>
+
+ PR ipa/93217
+ * ipa-inline-analysis.c (offline_size): Make proper parenthesis
+ encapsulation that was there before r280040.
+
2020-01-10 Richard Biener <rguenther@suse.de>
PR middle-end/93199
&& node->can_remove_if_no_direct_calls_p ())
{
int prob = opt_for_fn (node->decl, param_comdat_sharing_probability);
- return info->size * (100 - prob + 50) / 100;
+ return (info->size * (100 - prob) + 50) / 100;
}
}
return 0;