Commit 5675a2f8 by Jan Hubicka Committed by Jan Hubicka

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
parent a1c47ade
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> 2017-10-13 Jeff Law <law@redhat.com>
* tree-ssa-reassoc.c (reassociate_bb): Clarify code slighly. * tree-ssa-reassoc.c (reassociate_bb): Clarify code slighly.
...@@ -161,8 +161,10 @@ verify_flow_info (void) ...@@ -161,8 +161,10 @@ verify_flow_info (void)
e->src->index, e->dest->index); e->src->index, e->dest->index);
err = 1; 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 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, error ("Uninitialized probability of edge %i->%i", e->src->index,
e->dest->index); e->dest->index);
......
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