* ipa-profile.c (ipa_profile_read_edge_summary): Do not allow
2 calls of streamer_read_hwi in a function call.
+2020-01-15 Martin Liska <mliska@suse.cz>
+
+ * ipa-profile.c (ipa_profile_read_edge_summary): Do not allow
+ 2 calls of streamer_read_hwi in a function call.
+
2020-01-15 Richard Biener <rguenther@suse.de>
* alias.c (record_alias_subset): Avoid redundant work when
for (i = 0; i < len; i++)
{
- speculative_call_target item (streamer_read_hwi (ib),
- streamer_read_hwi (ib));
+ unsigned int target_id = streamer_read_hwi (ib);
+ int target_probability = streamer_read_hwi (ib);
+ speculative_call_target item (target_id, target_probability);
csum->speculative_call_targets.safe_push (item);
}
}