cfghooks.c (verify_flow_info): Disable check that all probabilities are set correctly.

* cfghooks.c (verify_flow_info): Disable check that all probabilities
	are set correctly.

From-SVN: r253741
This commit is contained in:
Jan Hubicka 2017-10-13 22:04:00 +02:00 committed by Jan Hubicka
parent a1c47ade77
commit 5675a2f8c8
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2017-10-13 Jan Hubicka <hubicka@ucw.cz>
* cfghooks.c (verify_flow_info): Disable check that all probabilities
are set correctly.
2017-10-13 Jeff Law <law@redhat.com>
* tree-ssa-reassoc.c (reassociate_bb): Clarify code slighly.

View file

@ -161,8 +161,10 @@ verify_flow_info (void)
e->src->index, e->dest->index);
err = 1;
}
/* FIXME: Graphite and SLJL and target code still tends to produce
edges with no probablity. */
if (profile_status_for_fn (cfun) >= PROFILE_GUESSED
&& !e->probability.initialized_p ())
&& !e->probability.initialized_p () && 0)
{
error ("Uninitialized probability of edge %i->%i", e->src->index,
e->dest->index);