public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/56743] New: Namelist bug with comment and no blank
@ 2013-03-26 16:20 janus at gcc dot gnu.org
  2013-03-26 16:27 ` [Bug fortran/56743] " dominiq at lps dot ens.fr
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: janus at gcc dot gnu.org @ 2013-03-26 16:20 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 56743
           Summary: Namelist bug with comment and no blank
    Classification: Unclassified
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: janus@gcc.gnu.org


Reduced test case (inspired by the one in PR 56660), originally reported by Kai
Gallmeister:


integer :: value = 100
namelist /nml/ value

write (*, nml=nml)

open (99, file='nml.dat', status="replace")
write(99,*) "&nml"
write(99,*) "  value=1!11"
write(99,*) "/"

rewind(99)
read (99, nml=nml)
write (*, nml=nml)

close (99, status="delete")

end 



Output with 4.3, 4.7 and trunk (haven't tried other versions):

&NML
 VALUE=        100,
 /
&NML
 VALUE=        100,
 /

Expected output:

&NML
 VALUE=        100,
 /
&NML
 VALUE=          1,
 /


The fact that there is no blank between the number and the comment should not
make any difference, right? Unfortunately it does ...


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2015-04-21 16:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-26 16:20 [Bug fortran/56743] New: Namelist bug with comment and no blank janus at gcc dot gnu.org
2013-03-26 16:27 ` [Bug fortran/56743] " dominiq at lps dot ens.fr
2013-03-26 16:58 ` burnus at gcc dot gnu.org
2013-03-30  4:08 ` jvdelisle at gcc dot gnu.org
2013-03-30 10:47 ` burnus at gcc dot gnu.org
2013-05-03 20:32 ` jvdelisle at gcc dot gnu.org
2015-04-07 19:28 ` jvdelisle at gcc dot gnu.org
2015-04-16  2:23 ` jvdelisle at gcc dot gnu.org
2015-04-21 16:14 ` jvdelisle at gcc dot gnu.org
2015-04-21 16:34 ` jvdelisle at gcc dot gnu.org
2015-04-21 16:42 ` jvdelisle at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).