Hi.

Following patch fixes an obvious typo in definition of a predictor.

Installed as r237040.

Martin
>From f78bf4238b4a3c7d6e03d7c00718204123a2cbfd Mon Sep 17 00:00:00 2001
From: marxin <mli...@suse.cz>
Date: Thu, 2 Jun 2016 18:13:25 +0200
Subject: [PATCH] Fix display name of PRED_FORTRAN_FAIL_IO

gcc/ChangeLog:

2016-06-02  Martin Liska  <mli...@suse.cz>

	* predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
---
 gcc/predict.def | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/predict.def b/gcc/predict.def
index b83ec60..67de6f3 100644
--- a/gcc/predict.def
+++ b/gcc/predict.def
@@ -162,7 +162,7 @@ DEF_PREDICTOR (PRED_FORTRAN_FAIL_ALLOC, "fail alloc", PROB_VERY_LIKELY, 0)
    used for I/O failures such as for invalid unit numbers.  This predictor
    only occurs when the user explicitly asked for a return status.  By default,
    the code aborts, which is handled via PRED_NORETURN.  */
-DEF_PREDICTOR (PRED_FORTRAN_FAIL_IO, "fail alloc", HITRATE(85), 0)
+DEF_PREDICTOR (PRED_FORTRAN_FAIL_IO, "fail IO", HITRATE (85), 0)
 
 /* Branch leading to a run-time warning message which is printed only once
    are unlikely.  The print-warning branch itself can be likely or unlikely.  */
-- 
2.8.3

Reply via email to