diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-28 18:27:07 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-28 18:27:07 +0000 |
commit | 5331f35a8778193583ee027a3a01b417e3284643 (patch) | |
tree | 78e951ed1a6bdcd8f9a5713691d4421131e21102 /gcc/predict.def | |
parent | b8128c7bdc8823828611cfbf3cd94f39601cbd0e (diff) | |
download | gcc-5331f35a8778193583ee027a3a01b417e3284643.tar.gz |
* predict.def (PRED_TREE_EARLY_RETURN, PRED_CONST_RETURN,
PRED_NEGATIVE_RETURN): Update outcomes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122410 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/predict.def')
-rw-r--r-- | gcc/predict.def | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/predict.def b/gcc/predict.def index da27031f7c8..ac6777cc16b 100644 --- a/gcc/predict.def +++ b/gcc/predict.def @@ -97,16 +97,16 @@ DEF_PREDICTOR (PRED_TREE_FPOPCODE, "fp_opcode (on trees)", HITRATE (90), 0) DEF_PREDICTOR (PRED_CALL, "call", HITRATE (69), 0) /* Branch causing function to terminate is probably not taken. */ -DEF_PREDICTOR (PRED_TREE_EARLY_RETURN, "early return (on trees)", HITRATE (45), 0) +DEF_PREDICTOR (PRED_TREE_EARLY_RETURN, "early return (on trees)", HITRATE (54), 0) /* Branch containing goto is probably not taken. */ DEF_PREDICTOR (PRED_GOTO, "goto", HITRATE (70), 0) /* Branch ending with return constant is probably not taken. */ -DEF_PREDICTOR (PRED_CONST_RETURN, "const return", HITRATE (95), 0) +DEF_PREDICTOR (PRED_CONST_RETURN, "const return", HITRATE (67), 0) /* Branch ending with return negative constant is probably not taken. */ -DEF_PREDICTOR (PRED_NEGATIVE_RETURN, "negative return", HITRATE (77), 0) +DEF_PREDICTOR (PRED_NEGATIVE_RETURN, "negative return", HITRATE (96), 0) /* Branch ending with return; is probably not taken */ DEF_PREDICTOR (PRED_NULL_RETURN, "null return", HITRATE (96), 0) |