From: Jan Hubicka Date: Fri, 22 Mar 2002 11:18:33 +0000 (+0000) Subject: Fix the constant I forgot to update :( X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7225b8ec667ba28380481baaa343a659e11858e1;p=gcc.git Fix the constant I forgot to update :( From-SVN: r51170 --- 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,