1 Jul 07:00
[patch, libgfortran] PR36676 Namelist Comments Problems
Jerry DeLisle <jvdelisle <at> verizon.net>
2008-07-01 05:00:44 GMT
2008-07-01 05:00:44 GMT
I will commit the following patch as obvious and simple.
Regression tested on x86-64.
On my patch for PR36657 I should have used eat_separator instead of eat_line.
Regards,
Jerry
2008-06-30 Jerry DeLisle <jvdelisle <at> gcc.gnu.org>
PR fortran/36676
* io/list_read.c (find_nml_name): Use eat_separator instead of eat_line.
Index: list_read.c
===================================================================
--- list_read.c (revision 137236)
+++ list_read.c (working copy)
@@ -2922,8 +2922,8 @@ find_nml_name:
goto find_nml_name;
}
- if (c == '!')
- eat_line (dtp);
+ unget_char (dtp, c);
+ eat_separator (dtp);
/* Ready to read namelist objects. If there is an error in input
from stdin, output the error message and continue. */
(Continue reading)
Good !
> Richard would like some gfortran help, which I am going to find hard
> to provide him with for some months due to pressure of work. This is
> going to be quite a big job, so if any body else can help.... please
> feel free!
Note that we can contemplate on *any* scalarization loop in isolation -
there is no need to convert them all at once (as Richard pointed out to
me at the Summit).
We can leasurily convert the Front End until we are entirely satisfied
that the whole clean-up has been done.
Kind regards,
RSS Feed