https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142
--- Comment #7 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
I have confirmed this is a duplicate of 71123. The fix is trivial.
--- trunk/libgfortran/io/list_read.c 2016/05/24 04:15:39 236627
+++ trunk/libgfortran/io/list_read.c 2016/05/24 06:11:21 236628
@@ -418,7 +418,7 @@
/* Now skip spaces, EOF and EOL are handled in next_char. */
do
c = next_char (dtp);
- while (c != EOF && (c == ' ' || c == '\t'));
+ while (c != EOF && (c == ' ' || c == '\r' || c == '\t'));
unget_char (dtp, c);
return c;