[Bug libfortran/39402] gfortran 20090306: internal write of 0.0 with F0.3 gives **

2009-03-09 Thread davidgkinniburgh at yahoo dot co dot uk
--- Comment #7 from davidgkinniburgh at yahoo dot co dot uk 2009-03-09 11:33 --- Thanks Jerry. PS CHARACTER(80) :: str no longer needed in test case. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39402

[Bug libfortran/39402] gfortran 20090306: internal write of 0.0 with F0.3 gives **

2009-03-09 Thread davidgkinniburgh at yahoo dot co dot uk
--- Comment #8 from davidgkinniburgh at yahoo dot co dot uk 2009-03-09 11:34 --- Thanks Jerry. PS CHARACTER(80) :: str no longer required in test case. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39402

[Bug libfortran/39402] gfortran 20090306: internal write of 0.0 with F0.3 gives **

2009-03-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #1 from jvdelisle at gcc dot gnu dot org 2009-03-09 02:21 --- I am looking into this. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug libfortran/39402] gfortran 20090306: internal write of 0.0 with F0.3 gives **

2009-03-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #2 from jvdelisle at gcc dot gnu dot org 2009-03-09 03:17 --- This is a variation of pr37834. My patch for it introduced this bug. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39402

[Bug libfortran/39402] gfortran 20090306: internal write of 0.0 with F0.3 gives **

2009-03-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #3 from jvdelisle at gcc dot gnu dot org 2009-03-09 03:35 --- With the following example: REAL :: x CHARACTER(80) :: str x = 0.0 write (6,'(f0.0)') x write (6,'(f0.1)') x write (6,'(f0.2)') x write (6,'(f0.3)') x write (6,'(f0.4)') x END gfortran gives: $ gfc

[Bug libfortran/39402] gfortran 20090306: internal write of 0.0 with F0.3 gives **

2009-03-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #4 from jvdelisle at gcc dot gnu dot org 2009-03-09 04:55 --- Subject: Bug 39402 Author: jvdelisle Date: Mon Mar 9 04:54:50 2009 New Revision: 144719 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=144719 Log: 2009-03-08 Jerry DeLisle jvdeli...@gcc.gnu.org

[Bug libfortran/39402] gfortran 20090306: internal write of 0.0 with F0.3 gives **

2009-03-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #5 from jvdelisle at gcc dot gnu dot org 2009-03-09 05:00 --- Committed revision 144718. (passed regression testing, had wrong PR number in ChangeLog, fixed) Index: write_float.def === --- write_float.def

[Bug libfortran/39402] gfortran 20090306: internal write of 0.0 with F0.3 gives **

2009-03-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #6 from jvdelisle at gcc dot gnu dot org 2009-03-09 05:07 --- David, thanks for the report. Closing. If anyone feels strongly about backporting to 4.3, let me know. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added