public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/26554]  New: [gfortran] incorrect behaviour when reading a logical variable from a string
@ 2006-03-04 12:15 martin at mpa-garching dot mpg dot de
  2006-03-04 15:25 ` [Bug fortran/26554] " kargl at gcc dot gnu dot org
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: martin at mpa-garching dot mpg dot de @ 2006-03-04 12:15 UTC (permalink / raw)
  To: gcc-bugs

On x86_64, gfortran appears to miscompile the fopllowing program:

      program bug
      implicit none
      character*30 :: strg
      logical l

      strg = "false"
      read (strg,*,err=10) l
      print *,l
      stop

   10 print *,"error detected"
      end

martin@linux:~/tmp> gfortran -v test.f
Driving: gfortran -v test.f -lgfortranbegin -lgfortran -lm -shared-libgcc
Using built-in specs.
Target: x86_64-unknown-linux-gnu
Configured with: /home/martin/software/gcc/configure --disable-multilib
--with-gmp=/home/martin/software/mygmp --with-mpfr=/home/martin/software/mympfr
--prefix=/home/martin/software/ugcc --enable-languages=c++,fortran
--enable-checking=release
Thread model: posix
gcc version 4.2.0 20060304 (experimental)
 /home/martin/software/ugcc/libexec/gcc/x86_64-unknown-linux-gnu/4.2.0/f951
test.f -ffixed-form -quiet -dumpbase test.f -mtune=generic -auxbase test
-version -I
/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/finclude -o
/tmp/cccZfkta.s
GNU F95 version 4.2.0 20060304 (experimental) (x86_64-unknown-linux-gnu)
        compiled by GNU C version 4.2.0 20060304 (experimental).
GGC heuristics: --param ggc-min-expand=98 --param ggc-min-heapsize=128005
 as -V -Qy -o /tmp/cc6fIzRc.o /tmp/cccZfkta.s
GNU assembler version 2.16.91.0.2 (x86_64-suse-linux) using BFD version
2.16.91.0.2 20050720 (SuSE Linux)
 /home/martin/software/ugcc/libexec/gcc/x86_64-unknown-linux-gnu/4.2.0/collect2
--eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2
/usr/lib/../lib64/crt1.o /usr/lib/../lib64/crti.o
/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/crtbegin.o
-L/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0
-L/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/../../../../lib64
-L/lib/../lib64 -L/usr/lib/../lib64
-L/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/../../..
/tmp/cc6fIzRc.o -lgfortranbegin -lgfortran -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc
/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/crtend.o
/usr/lib/../lib64/crtn.o
martin@linux:~/tmp> ./a.out
At line 7 of file test.f
Fortran runtime error: End of file
martin@linux:~/tmp>

I would have expected the executable to write "F", or maybe "error detected",
which happens if the code is compiled with g77 or gfortran on i386.

I think this bug has been introduced during the last two weeks, but I'm not
absolutely certain.


-- 
           Summary: [gfortran] incorrect behaviour when reading a logical
                    variable from a string
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: martin at mpa-garching dot mpg dot de
 GCC build triplet: x86_64-unknown-linux-gnu
  GCC host triplet: x86_64-unknown-linux-gnu
GCC target triplet: x86_64-unknown-linux-gnu


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
@ 2006-03-04 15:25 ` kargl at gcc dot gnu dot org
  2006-03-04 17:53 ` martin at mpa-garching dot mpg dot de
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: kargl at gcc dot gnu dot org @ 2006-03-04 15:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from kargl at gcc dot gnu dot org  2006-03-04 15:25 -------
kargl[206] gfc4x -o z str.f90
kargl[207] ./z
 F
kargl[208] gfc4x --version
GNU Fortran 95 (GCC) 4.2.0 20060226 (experimental)


kargl[210] gfc4x -o z str.f90
kargl[211] ./z
At line 7 of file str.f90
Fortran runtime error: End of file
kargl[212] gfc4x --version
GNU Fortran 95 (GCC) 4.2.0 20060304 (experimental)


-- 

kargl at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-03-04 15:25:49
               date|                            |


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
  2006-03-04 15:25 ` [Bug fortran/26554] " kargl at gcc dot gnu dot org
@ 2006-03-04 17:53 ` martin at mpa-garching dot mpg dot de
  2006-03-04 18:03 ` jvdelisle at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: martin at mpa-garching dot mpg dot de @ 2006-03-04 17:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from martin at mpa-garching dot mpg dot de  2006-03-04 17:53 -------
I hope this isn't in the 4.1 release. I don't have one lying around to test,
sorry.
However, it is on the 4.1 branch, and if it isn't in the release, it should be
very simple to locate.


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
  2006-03-04 15:25 ` [Bug fortran/26554] " kargl at gcc dot gnu dot org
  2006-03-04 17:53 ` martin at mpa-garching dot mpg dot de
@ 2006-03-04 18:03 ` jvdelisle at gcc dot gnu dot org
  2006-03-04 18:15 ` jvdelisle at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-04 18:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jvdelisle at gcc dot gnu dot org  2006-03-04 18:03 -------
This may be related to my recent patch to PR26136 or to PR26509 which I am
still working on.  The patch to PR26136 did not go into 4.1.0 but it did go
into 4.1.1 just a few days ago.

I will have a look.


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (2 preceding siblings ...)
  2006-03-04 18:03 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-04 18:15 ` jvdelisle at gcc dot gnu dot org
  2006-03-05  0:13 ` jvdelisle at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-04 18:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jvdelisle at gcc dot gnu dot org  2006-03-04 18:15 -------
The reason for no "error detected" is pr26509.

I have to look at how we handle internal string IO in relation to the patch for
pr26136 which is looking for a delmiter to tell it to stop.

strg = "false," works.  :)


-- 

jvdelisle at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jvdelisle at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-03-04 15:25:49         |2006-03-04 18:15:31
               date|                            |


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (3 preceding siblings ...)
  2006-03-04 18:15 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-05  0:13 ` jvdelisle at gcc dot gnu dot org
  2006-03-05 17:54 ` jvdelisle at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-05  0:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jvdelisle at gcc dot gnu dot org  2006-03-05 00:13 -------
Patch tested and will be committed soon.


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (4 preceding siblings ...)
  2006-03-05  0:13 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-05 17:54 ` jvdelisle at gcc dot gnu dot org
  2006-03-05 18:00 ` jvdelisle at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-05 17:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jvdelisle at gcc dot gnu dot org  2006-03-05 17:54 -------
Subject: Bug 26554

Author: jvdelisle
Date: Sun Mar  5 17:54:07 2006
New Revision: 111738

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111738
Log:
2006-03-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/26554
        * io/list_read.c (read_logical): Return the value if not in namelist
        mode.

Modified:
    trunk/libgfortran/ChangeLog
    trunk/libgfortran/io/list_read.c


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (5 preceding siblings ...)
  2006-03-05 17:54 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-05 18:00 ` jvdelisle at gcc dot gnu dot org
  2006-03-06 12:10 ` martin at mpa-garching dot mpg dot de
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-05 18:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from jvdelisle at gcc dot gnu dot org  2006-03-05 18:00 -------
Subject: Bug 26554

Author: jvdelisle
Date: Sun Mar  5 18:00:22 2006
New Revision: 111739

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111739
Log:
2006-03-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/26554
        * gfortran.dg/read_logical.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/read_logical.f90
Modified:
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (6 preceding siblings ...)
  2006-03-05 18:00 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-06 12:10 ` martin at mpa-garching dot mpg dot de
  2006-03-06 13:22 ` martin at mpa-garching dot mpg dot de
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: martin at mpa-garching dot mpg dot de @ 2006-03-06 12:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from martin at mpa-garching dot mpg dot de  2006-03-06 12:10 -------
Mainline works correctly again, thanks!
Do you plan to commit to the 4.1-branch too?


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (7 preceding siblings ...)
  2006-03-06 12:10 ` martin at mpa-garching dot mpg dot de
@ 2006-03-06 13:22 ` martin at mpa-garching dot mpg dot de
  2006-03-06 14:22 ` jvdelisle at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: martin at mpa-garching dot mpg dot de @ 2006-03-06 13:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from martin at mpa-garching dot mpg dot de  2006-03-06 13:22 -------
I just noticed another (probably related) problem:

The following Fortran code is derived from some autoconf test:

      PROGRAM TESTRECL
      IMPLICIT NONE

      OPEN(UNIT = 10,FILE = 'conftest.rcl1', FORM = 'UNFORMATTED',
     :  ACCESS = 'DIRECT', RECL = 1, ERR = 101)

         WRITE(UNIT=10,REC=1,ERR=101) 1d0
         PRINT *,"OK"
         STOP

 101     PRINT *,"error"

         CLOSE(UNIT=10, STATUS='DELETE')
      END


martin@linux:~/tmp> gfortran -v conf.f
Driving: gfortran -v conf.f -lgfortranbegin -lgfortran -lm -shared-libgcc
Using built-in specs.
Target: x86_64-unknown-linux-gnu
Configured with: /home/martin/software/gcc/configure --disable-multilib
--with-gmp=/home/martin/software/mygmp --with-mpfr=/home/martin/software/mympfr
--prefix=/home/martin/software/ugcc --enable-languages=c++,fortran
--enable-checking=release
Thread model: posix
gcc version 4.2.0 20060306 (experimental)
 /home/martin/software/ugcc/libexec/gcc/x86_64-unknown-linux-gnu/4.2.0/f951
conf.f -ffixed-form -quiet -dumpbase conf.f -mtune=generic -auxbase conf
-version -I
/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/finclude -o
/tmp/ccS0dlhV.s
GNU F95 version 4.2.0 20060306 (experimental) (x86_64-unknown-linux-gnu)
        compiled by GNU C version 4.2.0 20060306 (experimental).
GGC heuristics: --param ggc-min-expand=98 --param ggc-min-heapsize=128005
 as -V -Qy -o /tmp/cciwdHBI.o /tmp/ccS0dlhV.s
GNU assembler version 2.16.91.0.2 (x86_64-suse-linux) using BFD version
2.16.91.0.2 20050720 (SuSE Linux)
 /home/martin/software/ugcc/libexec/gcc/x86_64-unknown-linux-gnu/4.2.0/collect2
--eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2
/usr/lib/../lib64/crt1.o /usr/lib/../lib64/crti.o
/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/crtbegin.o
-L/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0
-L/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/../../../../lib64
-L/lib/../lib64 -L/usr/lib/../lib64
-L/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/../../..
/tmp/cciwdHBI.o -lgfortranbegin -lgfortran -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc
/home/martin/software/ugcc/lib/gcc/x86_64-unknown-linux-gnu/4.2.0/crtend.o
/usr/lib/../lib64/crtn.o
martin@linux:~/tmp> ./a.out
At line 7 of file conf.f
Fortran runtime error: End of record


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (8 preceding siblings ...)
  2006-03-06 13:22 ` martin at mpa-garching dot mpg dot de
@ 2006-03-06 14:22 ` jvdelisle at gcc dot gnu dot org
  2006-03-06 14:42 ` martin at mpa-garching dot mpg dot de
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-06 14:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jvdelisle at gcc dot gnu dot org  2006-03-06 14:22 -------
On Comment #8:  Yes I will be committing the logical patch to 4.1 branch soon.

On Comment #9:  This is not really a bug depending on how one interprets the
f95 standard.  The three error families, EOR, END, and ERR are each treated
separately.  EOR and END are not considered the same as ERR.  This is probably
processor dependant behavior.  Regardless, it is PR26509 which we are still
evaluating.


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (9 preceding siblings ...)
  2006-03-06 14:22 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-06 14:42 ` martin at mpa-garching dot mpg dot de
  2006-03-07  1:07 ` jvdelisle at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: martin at mpa-garching dot mpg dot de @ 2006-03-06 14:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from martin at mpa-garching dot mpg dot de  2006-03-06 14:41 -------
> On Comment #9:  This is not really a bug depending on how one interprets the
> f95 standard.  The three error families, EOR, END, and ERR are each treated
> separately.  EOR and END are not considered the same as ERR.

I see. But in a WRITE statement, EOR and END must not be specified; how should
I try to catch the error condition then?


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (10 preceding siblings ...)
  2006-03-06 14:42 ` martin at mpa-garching dot mpg dot de
@ 2006-03-07  1:07 ` jvdelisle at gcc dot gnu dot org
  2006-03-08  6:04 ` jvdelisle at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-07  1:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jvdelisle at gcc dot gnu dot org  2006-03-07 01:07 -------
In the interim, use the iostat= and test for the error you are looking for.  I
am still digging around on this one to make sure I am not in a standard
compliance conflict if I implement this feature.


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (11 preceding siblings ...)
  2006-03-07  1:07 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-08  6:04 ` jvdelisle at gcc dot gnu dot org
  2006-03-08  6:54 ` jvdelisle at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-08  6:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from jvdelisle at gcc dot gnu dot org  2006-03-08 06:04 -------
Subject: Bug 26554

Author: jvdelisle
Date: Wed Mar  8 06:04:22 2006
New Revision: 111840

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111840
Log:
2006-03-07  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/26554
        * io/list_read.c (read_logical): Return the value if not in namelist
        mode.

Modified:
    branches/gcc-4_1-branch/libgfortran/ChangeLog
    branches/gcc-4_1-branch/libgfortran/io/list_read.c


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (12 preceding siblings ...)
  2006-03-08  6:04 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-08  6:54 ` jvdelisle at gcc dot gnu dot org
  2006-03-08  6:56 ` jvdelisle at gcc dot gnu dot org
  2006-03-14  1:25 ` pinskia at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-08  6:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from jvdelisle at gcc dot gnu dot org  2006-03-08 06:54 -------
Subject: Bug 26554

Author: jvdelisle
Date: Wed Mar  8 06:54:46 2006
New Revision: 111841

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111841
Log:
2006-03-07  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/26554
        * gfortran.dg/read_logical.f90: New test.

Added:
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/read_logical.f90
Modified:
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (13 preceding siblings ...)
  2006-03-08  6:54 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-08  6:56 ` jvdelisle at gcc dot gnu dot org
  2006-03-14  1:25 ` pinskia at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-08  6:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from jvdelisle at gcc dot gnu dot org  2006-03-08 06:56 -------
Fixed on 4.1.1 and 4.2.0


-- 

jvdelisle at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

* [Bug fortran/26554] [gfortran] incorrect behaviour when reading a logical variable from a string
  2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
                   ` (14 preceding siblings ...)
  2006-03-08  6:56 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-14  1:25 ` pinskia at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-14  1:25 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.1.1


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


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

end of thread, other threads:[~2006-03-14  1:25 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-04 12:15 [Bug fortran/26554] New: [gfortran] incorrect behaviour when reading a logical variable from a string martin at mpa-garching dot mpg dot de
2006-03-04 15:25 ` [Bug fortran/26554] " kargl at gcc dot gnu dot org
2006-03-04 17:53 ` martin at mpa-garching dot mpg dot de
2006-03-04 18:03 ` jvdelisle at gcc dot gnu dot org
2006-03-04 18:15 ` jvdelisle at gcc dot gnu dot org
2006-03-05  0:13 ` jvdelisle at gcc dot gnu dot org
2006-03-05 17:54 ` jvdelisle at gcc dot gnu dot org
2006-03-05 18:00 ` jvdelisle at gcc dot gnu dot org
2006-03-06 12:10 ` martin at mpa-garching dot mpg dot de
2006-03-06 13:22 ` martin at mpa-garching dot mpg dot de
2006-03-06 14:22 ` jvdelisle at gcc dot gnu dot org
2006-03-06 14:42 ` martin at mpa-garching dot mpg dot de
2006-03-07  1:07 ` jvdelisle at gcc dot gnu dot org
2006-03-08  6:04 ` jvdelisle at gcc dot gnu dot org
2006-03-08  6:54 ` jvdelisle at gcc dot gnu dot org
2006-03-08  6:56 ` jvdelisle at gcc dot gnu dot org
2006-03-14  1:25 ` pinskia at gcc dot gnu dot 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).