This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[Patch, gfortran] Fix PR fortran/12702.
- From: Toon Moene <toon at moene dot indiv dot nluug dot nl>
- To: gcc-patches at gcc dot gnu dot org
- Cc: fortran at gcc dot gnu dot org
- Date: Thu, 30 Oct 2003 00:39:11 +0100
- Subject: [Patch, gfortran] Fix PR fortran/12702.
- Organization: Moene Computational Physics, Maartensdijk, The Netherlands
The attached patch should fix PR fortran/12702.
OK if it survives as bootstrap (C and f95 only) and make -k check
(gfortran only) ?
--
Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
Saturnushof 14, 3738 XG Maartensdijk, The Netherlands
Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
GNU Fortran 95: http://gcc.gnu.org/fortran/ (under construction)
2003-10-30 Toon Moene <toon@moene.indiv.nluug.nl>
PR fortran/12702
* io/list_read.c (eat_separator): Have eat_separator
eat all the is_separator separators.
*** list_read.c.orig Sun Oct 12 19:02:42 2003
--- list_read.c Thu Oct 30 00:32:28 2003
*************** eat_separator (void)
*** 217,222 ****
--- 217,223 ----
next_record (0);
break;
+ case '\t':
case '\n':
break;