From 6e304f51f0d0ba804ad5771448c3e4bb2efaed17 Mon Sep 17 00:00:00 2001 From: hubicka Date: Fri, 22 Mar 2002 11:18:33 +0000 Subject: [PATCH] Fix the constant I forgot to update :( git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51170 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cfgcleanup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index bc637e4..a1d5c64 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.7.4