This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/36582] Namelist I/O error: Bogus "Cannot match namelist object"



------- Comment #10 from jvdelisle at gcc dot gnu dot org  2008-06-22 05:52 -------
Correction, the IF clause is not relevant.

Index: libgfortran/io/list_read.c
===================================================================
--- libgfortran/io/list_read.c  (revision 136998)
+++ libgfortran/io/list_read.c  (working copy)
@@ -2649,7 +2649,7 @@ get_name:
       if (!is_separator (c))
        push_char (dtp, tolower(c));
       c = next_char (dtp);
-    } while (!( c=='=' || c==' ' || c=='\t' || c =='(' || c =='%' ));
+    } while (!( c=='=' || c==' ' || c=='\t' || c =='(' ));

   unget_char (dtp, c);



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36582


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]