public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libfortran/56786] New: [4.6/4.7/4.8/4.9 Regression] Namelist read fails with designators containing embedded spaces
@ 2013-03-30 10:18 burnus at gcc dot gnu.org
  2013-04-01  0:05 ` [Bug libfortran/56786] " jvdelisle at gcc dot gnu.org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: burnus at gcc dot gnu.org @ 2013-03-30 10:18 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 56786
           Summary: [4.6/4.7/4.8/4.9 Regression] Namelist read fails with
                    designators containing embedded spaces
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libfortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: burnus@gcc.gnu.org
                CC: jvdelisle@gcc.gnu.org, tiloschwarz@gcc.gnu.org
            Blocks: 56744


Split off from PR 52512.

The following program runs successfully with GCC 4.1, 4.3 and 4.5, but it fails
with GCC 4.6 to GCC 4.9. It also works with Crayftn, PGI and ifort.

The problem is the space in "i(3 )=". Strictly speaking, that is invalid but as
it worked before, others support it as well, and as ignoring spaces in
"name(...)" is nonambiguous, I believe that we should support it.

(F2008, "10.11.2 Name-value subsequences", paragraph 2 has: "Each designator
may be preceded and followed by one or more optional blanks but shall not
contain embedded blanks.")



integer :: i(3)
namelist /nml/ i

i = -42
open(99,status='scratch')
write(99,'(a)') '&nml i(3 ) = 5 /'
rewind(99)
read(99,nml=nml)
close(99)
write(*,nml=nml)
if (i(1)/=-42 .or. i(2)/=-42 .or. i(3)/=5) call abort()
end


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

end of thread, other threads:[~2013-04-28 17:21 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-30 10:18 [Bug libfortran/56786] New: [4.6/4.7/4.8/4.9 Regression] Namelist read fails with designators containing embedded spaces burnus at gcc dot gnu.org
2013-04-01  0:05 ` [Bug libfortran/56786] " jvdelisle at gcc dot gnu.org
2013-04-01 20:26 ` burnus at gcc dot gnu.org
2013-04-01 20:27 ` burnus at gcc dot gnu.org
2013-04-01 20:29 ` burnus at gcc dot gnu.org
2013-04-02  9:08 ` rguenth at gcc dot gnu.org
2013-04-12 15:18 ` [Bug libfortran/56786] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
2013-04-27 22:51 ` jvdelisle at gcc dot gnu.org
2013-04-28 16:56 ` jvdelisle at gcc dot gnu.org
2013-04-28 17:21 ` jvdelisle at gcc dot gnu.org
2013-04-28 17:21 ` 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).