Commit 7225b8ec by Jan Hubicka

Fix the constant I forgot to update :(

From-SVN: r51170
parent f42f14a9
......@@ -1208,7 +1208,7 @@ outgoing_edges_match (mode, bb1, bb2)
/* Fail if the difference in probabilities is greater than 50%.
This rules out two well-predicted branches with opposite
outcomes. */
if (abs (b1->probability - prob2) > REG_BR_PROB_BASE / 5)
if (abs (b1->probability - prob2) > REG_BR_PROB_BASE / 2)
{
if (rtl_dump_file)
fprintf (rtl_dump_file,
......
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