Commit 367c959f by Jan Hubicka Committed by Jan Hubicka

ipa-inline-analysis.c (do_estimate_edge_time): Relax check for ipa profiles.

	* ipa-inline-analysis.c (do_estimate_edge_time): Relax
	check for ipa profiles.

From-SVN: r278179
parent b914768c
2019-11-13 Jan Hubicka <hubicka@ucw.cz>
* ipa-inline-analysis.c (do_estimate_edge_time): Relax
check for ipa profiles.
2019-11-13 Jan Hubicka <hubicka@ucw.cz>
PR c++/92421
* ipa-prop.c (update_indirect_edges_after_inlining):
Mark parameter as used.
......@@ -210,7 +210,8 @@ do_estimate_edge_time (struct cgraph_edge *edge)
time = e->entry.time;
nonspec_time = e->entry.nonspec_time;
hints = e->entry.hints;
if (flag_checking)
if (flag_checking
&& !edge->callee->count.ipa_p ())
{
sreal chk_time, chk_nonspec_time;
int chk_size, chk_min_size;
......
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