aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2007-02-28 19:27:07 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2007-02-28 18:27:07 +0000
commit76bf4853ce24034b8489b3b5ba56d1de50203ea5 (patch)
tree78e951ed1a6bdcd8f9a5713691d4421131e21102 /gcc
parent7193e30a4d1067cd466840228e24202dc3d0db03 (diff)
downloadgcc-76bf4853ce24034b8489b3b5ba56d1de50203ea5.zip
gcc-76bf4853ce24034b8489b3b5ba56d1de50203ea5.tar.gz
gcc-76bf4853ce24034b8489b3b5ba56d1de50203ea5.tar.bz2
predict.def (PRED_TREE_EARLY_RETURN, [...]): Update outcomes.
* predict.def (PRED_TREE_EARLY_RETURN, PRED_CONST_RETURN, PRED_NEGATIVE_RETURN): Update outcomes. From-SVN: r122410
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/predict.def6
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a8f4170..e1c941f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2007-02-28 Jan Hubicka <jh@suse.cz>
+
+ * predict.def (PRED_TREE_EARLY_RETURN, PRED_CONST_RETURN,
+ PRED_NEGATIVE_RETURN): Update outcomes.
+
2007-02-28 Bernd Schmidt <bernd.schmidt@analog.com>
* calls.c (emit_library_call_value_1): Handle partial registers
diff --git a/gcc/predict.def b/gcc/predict.def
index da27031..ac6777c 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)