From c706a67a4d93579e7d57e7bdb897ab7180414f5e Mon Sep 17 00:00:00 2001 From: Jerry DeLisle Date: Sun, 9 Mar 2014 05:34:34 +0000 Subject: [PATCH] re PR libfortran/38199 (missed optimization: I/O performance) 2014-03-08 Jerry DeLisle PR libfortran/38199 * io/list_read.c (next_char): Mark unlikely error checks. (eat_spaces): For character array reading, skip ahead over spaces rather than call next_char multiple times. From-SVN: r208439 --- libgfortran/ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 1a3539ddb710..83749aa6b1f5 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,7 +1,7 @@ 2014-03-08 Jerry DeLisle PR libfortran/38199 - * io/list_read.c (next_char): Delete unuseful error checks. + * io/list_read.c (next_char): Mark unlikely error checks. (eat_spaces): For character array reading, skip ahead over spaces rather than call next_char multiple times.