Commit 477145c8 by Richard Biener Committed by Richard Biener

re PR ipa/60327 (xalanbmk and dealII ICE in ipa-inline-analysis.c:3555)

2014-02-26  Richard Biener  <rguenther@suse.de>

	PR ipa/60327
	* ipa.c (walk_polymorphic_call_targets): Properly guard
	call to inline_update_overall_summary.

From-SVN: r208167
parent a3afdbb8
2014-02-26 Richard Biener <rguenther@suse.de>
PR ipa/60327
* ipa.c (walk_polymorphic_call_targets): Properly guard
call to inline_update_overall_summary.
2014-02-26 Bin Cheng <bin.cheng@arm.com>
PR target/60280
......
......@@ -223,10 +223,10 @@ walk_polymorphic_call_targets (pointer_set_t *reachable_call_targets,
edge->caller->order,
target->name (), target->order);
edge = cgraph_make_edge_direct (edge, target);
if (!inline_summary_vec && edge->call_stmt)
cgraph_redirect_edge_call_stmt_to_callee (edge);
else
if (inline_summary_vec)
inline_update_overall_summary (node);
else if (edge->call_stmt)
cgraph_redirect_edge_call_stmt_to_callee (edge);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment