[Bug libfortran/33225] [4.3 regression] Missing last digit is some formatted output (on 32bit targets)

2007-09-03 Thread jvdelisle at gcc dot gnu dot org
--- Comment #12 from jvdelisle at gcc dot gnu dot org 2007-09-04 04:47 --- Found the problem. I will submit the update patch against this PR -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug libfortran/33225] [4.3 regression] Missing last digit is some formatted output (on 32bit targets)

2007-08-30 Thread burnus at gcc dot gnu dot org
--- Comment #8 from burnus at gcc dot gnu dot org 2007-08-30 15:03 --- Can reproduce the problems with x86-64/Linux. -m64 works, but -m32 fails. -- burnus at gcc dot gnu dot org changed: What|Removed |Added

[Bug libfortran/33225] [4.3 regression] Missing last digit is some formatted output (on 32bit targets)

2007-08-30 Thread dominiq at lps dot ens dot fr
--- Comment #9 from dominiq at lps dot ens dot fr 2007-08-30 21:04 --- The following code: real x x = 1.0 print '(3E20.2e2)', x, x/10.0, x/100.0 print '(3E20.2e3)', x, x/10.0, x/100.0 print '(3E20.2e4)', x, x/10.0, x/100.0 print '(3E20.2e5)', x, x/10.0, x/100.0 print '(3E20.2e6)', x,

[Bug libfortran/33225] [4.3 regression] Missing last digit is some formatted output (on 32bit targets)

2007-08-30 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.3.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33225

[Bug libfortran/33225] [4.3 regression] Missing last digit is some formatted output (on 32bit targets)

2007-08-30 Thread jvdelisle at gcc dot gnu dot org
--- Comment #11 from jvdelisle at gcc dot gnu dot org 2007-08-31 01:43 --- Patch causing regression reverted. Closing this PR. Thanks for reporting. The next round on the per kind write float patch will have these test cases addressed. -- jvdelisle at gcc dot gnu dot org

[Bug libfortran/33225] [4.3 regression] Missing last digit is some formatted output (on 32bit targets)

2007-08-30 Thread jvdelisle at gcc dot gnu dot org
--- Comment #10 from jvdelisle at gcc dot gnu dot org 2007-08-31 01:37 --- Subject: Bug 33225 Author: jvdelisle Date: Fri Aug 31 01:37:31 2007 New Revision: 127950 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=127950 Log: 2007-08-30 Jerry DeLisle [EMAIL PROTECTED] PR