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 libfortran/14897] New: [gfortran] 'T' edit descriptor output incorrect


A small example to demonstrate:

 
      WRITE(*,'(20H12345678901234567890)')
      WRITE(*,'(T5,A,T10,A,T15,A)')'AA','BB','CC'
      WRITE(*,'(20H    AA   BB   CC    )')
      END


$ gfortran aa.f
$ ./a.out
12345678901234567890
     AA   BB   CC
    AA   BB   CC


and from g77:
$ g77 aa.f
$ ./a.out
12345678901234567890
    AA   BB   CC
    AA   BB   CC

using :
$ gfortran --version
GNU Fortran 95 (GCC 3.5-tree-ssa 20040407 (merged 20040331))

-- 
           Summary: [gfortran]  'T' edit descriptor output incorrect
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libfortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: bdavis9659 at comcast dot net
                CC: gcc-bugs at gcc dot gnu dot org


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


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