diff options
Diffstat (limited to 'gcc-4.6/gcc/predict.def')
-rw-r--r-- | gcc-4.6/gcc/predict.def | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc-4.6/gcc/predict.def b/gcc-4.6/gcc/predict.def index 4b3e87a..89d0787 100644 --- a/gcc-4.6/gcc/predict.def +++ b/gcc-4.6/gcc/predict.def @@ -116,3 +116,7 @@ DEF_PREDICTOR (PRED_NULL_RETURN, "null return", HITRATE (90), 0) /* Branches to a mudflap bounds check are extremely unlikely. */ DEF_PREDICTOR (PRED_MUDFLAP, "mudflap check", PROB_VERY_LIKELY, 0) + +/* Branches to compare induction variable to a loop bound is + extremely likely. */ +DEF_PREDICTOR (PRED_LOOP_IV_COMPARE, "loop iv compare", PROB_VERY_LIKELY, 0) |