]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* predict.def (PRED_TREE_EARLY_RETURN, PRED_CONST_RETURN,
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 Feb 2007 18:27:07 +0000 (18:27 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 Feb 2007 18:27:07 +0000 (18:27 +0000)
PRED_NEGATIVE_RETURN): Update outcomes.

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

gcc/ChangeLog
gcc/predict.def

index a8f41702d313a90308b327d252d6c1bec455cc16..e1c941fc19019a01e3042006853d3efb79334a44 100644 (file)
@@ -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
index da27031f7c833ecad8d28267558bd86ce37e4a76..ac6777cc16b14f54421f5e8416b41bded2be89c0 100644 (file)
@@ -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)