Commit 84aacbfd by Kyrylo Tkachov Committed by Kyrylo Tkachov

predict.c: Fix typo in comment above #define PROB_VERY_UNLIKELY.

2013-04-29  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

	* predict.c: Fix typo in comment above #define PROB_VERY_UNLIKELY.

From-SVN: r198408
parent 8dee4479
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> 2013-04-29 Tom de Vries <tom@codesourcery.com>
* tree-ssa-tail-merge.c: Update header comment. * tree-ssa-tail-merge.c: Update header comment.
......
...@@ -64,7 +64,7 @@ static sreal real_zero, real_one, real_almost_one, real_br_prob_base, ...@@ -64,7 +64,7 @@ static sreal real_zero, real_one, real_almost_one, real_br_prob_base,
/* Random guesstimation given names. /* Random guesstimation given names.
PROV_VERY_UNLIKELY should be small enough so basic block predicted 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_VERY_UNLIKELY (REG_BR_PROB_BASE / 2000 - 1)
#define PROB_EVEN (REG_BR_PROB_BASE / 2) #define PROB_EVEN (REG_BR_PROB_BASE / 2)
#define PROB_VERY_LIKELY (REG_BR_PROB_BASE - PROB_VERY_UNLIKELY) #define PROB_VERY_LIKELY (REG_BR_PROB_BASE - PROB_VERY_UNLIKELY)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment