diff options
author | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-03-22 11:18:33 +0000 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-03-22 11:18:33 +0000 |
commit | 7225b8ec667ba28380481baaa343a659e11858e1 (patch) | |
tree | 6b6dcf853e23866be662661007d100c290fdd1d2 /gcc | |
parent | f42f14a9ca641bc4c9bdd030b6dd1f31047bb54e (diff) | |
download | gcc-7225b8ec667ba28380481baaa343a659e11858e1.zip gcc-7225b8ec667ba28380481baaa343a659e11858e1.tar.gz gcc-7225b8ec667ba28380481baaa343a659e11858e1.tar.bz2 |
Fix the constant I forgot to update :(
From-SVN: r51170
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cfgcleanup.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |