2013-12-02 Yuri Rumyantsev <ysrumyan@gmail.com>
* ipa-inline.c (check_callers): Add missed pointer de-reference.
From-SVN: r205586
+2013-12-02 Yuri Rumyantsev <ysrumyan@gmail.com>
+
+ * ipa-inline.c (check_callers): Add missed pointer de-reference.
+
2013-12-02 Eric Botcazou <ebotcazou@adacore.com>
PR tree-optimization/59356
{
if (!can_inline_edge_p (e, true))
return true;
- if (!has_hot_call && cgraph_maybe_hot_edge_p (e))
+ if (!(*(bool *)has_hot_call) && cgraph_maybe_hot_edge_p (e))
*(bool *)has_hot_call = true;
}
return false;