Commit 993716bd by Jan Hubicka Committed by Jan Hubicka

re PR middle-end/52214 (FAIL: g++.dg/tree-ssa/pr44706.C -std=gnu++*…

re PR middle-end/52214 (FAIL: g++.dg/tree-ssa/pr44706.C -std=gnu++* scan-tree-dump-not fnsplit "Splitting function")


	PR middle-end/52214
	* predict.c (predict_paths_for_bb): Fix thinko in prevoius patch.

From-SVN: r184180
parent f3f5e3c3
2012-02-13 Jan Hubicka <jh@suse.cz>
PR middle-end/52214
* predict.c (predict_paths_for_bb): Fix thinko in prevoius patch.
2012-02-13 Eric Botcazou <ebotcazou@adacore.com>
* gcc.c (LINK_COMMAND_SPEC): Deal with -fgnu-tm.
......
......@@ -1869,7 +1869,7 @@ predict_paths_for_bb (basic_block cur, basic_block bb,
prevent visiting given BB twice. */
if (found)
predict_edge_def (e, pred, taken);
else if (!bitmap_set_bit (visited, e->src->index))
else if (bitmap_set_bit (visited, e->src->index))
predict_paths_for_bb (e->src, e->src, pred, taken, visited);
}
for (son = first_dom_son (CDI_POST_DOMINATORS, cur);
......
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