public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libfortran/19647] New: inquire(delim=) returns garbage
@ 2005-01-26 21:09 Thomas dot Koenig at online dot de
  2005-01-26 21:18 ` [Bug libfortran/19647] " pinskia at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-01-26 21:09 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 902 bytes --]

$ cat delim.f90
program main
  character(len=10) delim
  character(len=50) line
  open(10,delim='quote')
  inquire(10,delim=delim)
  print *,delim
  if (delim .ne. 'quote') call abort
end program main
$ gfortran delim.f90
$ ./a.out
 @÷@÷@
Aborted
$ gfortran -v ; gfortran -dumpmachine
Using built-in specs.
Configured with: ../gcc/configure --prefix=/home/ig25 --enable-languages=c,f95
Thread model: posix
gcc version 4.0.0 20050124 (experimental)
i686-pc-linux-gnu

-- 
           Summary: inquire(delim=) returns garbage
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libfortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Thomas dot Koenig at online dot de
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug libfortran/19647] inquire(delim=) returns garbage
  2005-01-26 21:09 [Bug libfortran/19647] New: inquire(delim=) returns garbage Thomas dot Koenig at online dot de
@ 2005-01-26 21:18 ` pinskia at gcc dot gnu dot org
  2005-01-28 14:16 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-26 21:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-26 21:18 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-01-26 21:18:56
               date|                            |


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


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

* [Bug libfortran/19647] inquire(delim=) returns garbage
  2005-01-26 21:09 [Bug libfortran/19647] New: inquire(delim=) returns garbage Thomas dot Koenig at online dot de
  2005-01-26 21:18 ` [Bug libfortran/19647] " pinskia at gcc dot gnu dot org
@ 2005-01-28 14:16 ` pinskia at gcc dot gnu dot org
  2005-01-30 13:17 ` cvs-commit at gcc dot gnu dot org
  2005-01-30 14:00 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-28 14:16 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-28 14:15 -------
Patch here: <http://gcc.gnu.org/ml/gcc-patches/2005-01/msg02117.html>.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


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


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

* [Bug libfortran/19647] inquire(delim=) returns garbage
  2005-01-26 21:09 [Bug libfortran/19647] New: inquire(delim=) returns garbage Thomas dot Koenig at online dot de
  2005-01-26 21:18 ` [Bug libfortran/19647] " pinskia at gcc dot gnu dot org
  2005-01-28 14:16 ` pinskia at gcc dot gnu dot org
@ 2005-01-30 13:17 ` cvs-commit at gcc dot gnu dot org
  2005-01-30 14:00 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-01-30 13:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-01-30 13:16 -------
Subject: Bug 19647

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	bdavis@gcc.gnu.org	2005-01-30 13:16:20

Modified files:
	gcc/testsuite  : ChangeLog 
	libgfortran    : ChangeLog 
	libgfortran/io : inquire.c 
Added files:
	gcc/testsuite/gfortran.dg: inquire_7.f90 

Log message:
	2005-01-30  Bud Davis  <bdavis@gfortran.org>
	
	PR fortran/19647
	* io/inquire.c (inquire_via_unit): Use correct variable for
	pad.
	
	* gfortan.dg/inquire_7.f90

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.4958&r2=1.4959
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/inquire_7.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&r1=1.155&r2=1.156
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/io/inquire.c.diff?cvsroot=gcc&r1=1.8&r2=1.9



-- 


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


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

* [Bug libfortran/19647] inquire(delim=) returns garbage
  2005-01-26 21:09 [Bug libfortran/19647] New: inquire(delim=) returns garbage Thomas dot Koenig at online dot de
                   ` (2 preceding siblings ...)
  2005-01-30 13:17 ` cvs-commit at gcc dot gnu dot org
@ 2005-01-30 14:00 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-30 14:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-30 13:59 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.0


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


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

end of thread, other threads:[~2005-01-30 14:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-26 21:09 [Bug libfortran/19647] New: inquire(delim=) returns garbage Thomas dot Koenig at online dot de
2005-01-26 21:18 ` [Bug libfortran/19647] " pinskia at gcc dot gnu dot org
2005-01-28 14:16 ` pinskia at gcc dot gnu dot org
2005-01-30 13:17 ` cvs-commit at gcc dot gnu dot org
2005-01-30 14:00 ` 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).