2013-04-29 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
authorktkachov <ktkachov@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 29 Apr 2013 11:27:30 +0000 (11:27 +0000)
committerktkachov <ktkachov@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 29 Apr 2013 11:27:30 +0000 (11:27 +0000)
* predict.c: Fix typo in comment above #define PROB_VERY_UNLIKELY.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@198408 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/predict.c

index ddbed99..d2cd16b 100644 (file)
@@ -1,3 +1,7 @@
+2013-04-29  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       * predict.c: Fix typo in comment above #define PROB_VERY_UNLIKELY.
+
 2013-04-29  Tom de Vries  <tom@codesourcery.com>
 
        * tree-ssa-tail-merge.c: Update header comment.
index 91f66a8..b6786f7 100644 (file)
@@ -64,7 +64,7 @@ static sreal real_zero, real_one, real_almost_one, real_br_prob_base,
 
 /* Random guesstimation given names.
    PROV_VERY_UNLIKELY should be small enough so basic block predicted
-   by it gets bellow HOT_BB_FREQUENCY_FRANCTION.  */
+   by it gets below HOT_BB_FREQUENCY_FRACTION.  */
 #define PROB_VERY_UNLIKELY     (REG_BR_PROB_BASE / 2000 - 1)
 #define PROB_EVEN              (REG_BR_PROB_BASE / 2)
 #define PROB_VERY_LIKELY       (REG_BR_PROB_BASE - PROB_VERY_UNLIKELY)