From 7225b8ec667ba28380481baaa343a659e11858e1 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 22 Mar 2002 11:18:33 +0000 Subject: [PATCH] Fix the constant I forgot to update :( From-SVN: r51170 --- gcc/cfgcleanup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index bc637e4ee48..a1d5c64d52b 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -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, -- 2.11.4.GIT