public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/20124] New: gfortran prints -.01 incorrectly
@ 2005-02-21 23:13 dir at lanl dot gov
  2005-02-21 23:17 ` [Bug libfortran/20124] " pinskia at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: dir at lanl dot gov @ 2005-02-21 23:13 UTC (permalink / raw)
  To: gcc-bugs

Actually + and - .01 print as zero -


[dir:~/tests/gfortran] dir% gfortran -o print01 print01.f
[dir:~/tests/gfortran] dir% print01
      0.00      0.00
STOP 0
[dir:~/tests/gfortran] dir% cat print01.f
      program main
      x=-.01
      y=.01
      write(6,1000)x,y
      stop
 1000 format (2f10.2)
      end

-- 
           Summary: gfortran prints -.01 incorrectly
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: dir at lanl dot gov
                CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: powerpc-apple-darwin7.8.0


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


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

* [Bug libfortran/20124] gfortran prints -.01 incorrectly
  2005-02-21 23:13 [Bug fortran/20124] New: gfortran prints -.01 incorrectly dir at lanl dot gov
@ 2005-02-21 23:17 ` pinskia at gcc dot gnu dot org
  2005-02-24 20:40 ` coudert at clipper dot ens dot fr
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-21 23:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-21 19:23 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |19292
              nThis|                            |
             Status|UNCONFIRMED                 |NEW
          Component|fortran                     |libfortran
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-02-21 19:23:22
               date|                            |


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


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

* [Bug libfortran/20124] gfortran prints -.01 incorrectly
  2005-02-21 23:13 [Bug fortran/20124] New: gfortran prints -.01 incorrectly dir at lanl dot gov
  2005-02-21 23:17 ` [Bug libfortran/20124] " pinskia at gcc dot gnu dot org
@ 2005-02-24 20:40 ` coudert at clipper dot ens dot fr
  2005-02-24 22:18 ` coudert at clipper dot ens dot fr
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: coudert at clipper dot ens dot fr @ 2005-02-24 20:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From coudert at clipper dot ens dot fr  2005-02-24 16:24 -------
$ cat pr20124.f 
      x = -.01
      y = .01
      write(*,'(2f10.2)') x, y
      print *, x, y
      end
$ ./bin/gfortran -static pr20124.f && ./a.out
      0.00      0.00
 -9.9999998E-03  9.9999998E-03

It looks like we're not handling the rounding correctly in this case (if you try
with x=-0.05, which can be represented in a real exactly, it doesn't happen).

-- 


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


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

* [Bug libfortran/20124] gfortran prints -.01 incorrectly
  2005-02-21 23:13 [Bug fortran/20124] New: gfortran prints -.01 incorrectly dir at lanl dot gov
  2005-02-21 23:17 ` [Bug libfortran/20124] " pinskia at gcc dot gnu dot org
  2005-02-24 20:40 ` coudert at clipper dot ens dot fr
@ 2005-02-24 22:18 ` coudert at clipper dot ens dot fr
  2005-03-11  8:03 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: coudert at clipper dot ens dot fr @ 2005-02-24 22:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From coudert at clipper dot ens dot fr  2005-02-24 17:38 -------
Patch proposed in http://gcc.gnu.org/ml/fortran/2005-02/msg00315.html

-- 


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


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

* [Bug libfortran/20124] gfortran prints -.01 incorrectly
  2005-02-21 23:13 [Bug fortran/20124] New: gfortran prints -.01 incorrectly dir at lanl dot gov
                   ` (2 preceding siblings ...)
  2005-02-24 22:18 ` coudert at clipper dot ens dot fr
@ 2005-03-11  8:03 ` cvs-commit at gcc dot gnu dot org
  2005-03-11  8:03 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-03-11  8:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-03-11 08:03 -------
Subject: Bug 20124

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	bdavis@gcc.gnu.org	2005-03-11 08:03:03

Modified files:
	libgfortran/io : write.c 
	libgfortran    : ChangeLog 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gfortran.dg: pr20124.f90 

Log message:
	2005-03-12  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
	
	PR libfortran/20124
	* gfortran.dg/pr20124.f90: New Test
	
	2005-03-11  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
	
	PR libfortran/20124
	* write.c (output_float): Adds a nzero_real variable to store
	the number of leading zeros whatever the format width is. Corrects
	the rounding of numbers less than 10^(-width). Fixes typo in an
	error message. Updates copyright years

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/io/write.c.diff?cvsroot=gcc&r1=1.26&r2=1.27
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&r1=1.168&r2=1.169
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5145&r2=1.5146
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/pr20124.f90.diff?cvsroot=gcc&r1=1.1&r2=1.2



-- 


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


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

* [Bug libfortran/20124] gfortran prints -.01 incorrectly
  2005-02-21 23:13 [Bug fortran/20124] New: gfortran prints -.01 incorrectly dir at lanl dot gov
                   ` (3 preceding siblings ...)
  2005-03-11  8:03 ` cvs-commit at gcc dot gnu dot org
@ 2005-03-11  8:03 ` cvs-commit at gcc dot gnu dot org
  2005-03-11 14:17 ` pinskia at gcc dot gnu dot org
  2005-03-15 21:49 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-03-11  8:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-03-11 08:03 -------
Subject: Bug 20124

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	bdavis@gcc.gnu.org	2005-03-11 08:02:46

Modified files:
	libgfortran/io : write.c 
	libgfortran    : ChangeLog 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gfortran.dg: pr20124.f90 

Log message:
	2005-03-12  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
	
	PR libfortran/20124
	* gfortran.dg/pr20124.f90: New Test
	
	2005-03-11  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
	
	PR libfortran/20124
	* write.c (output_float): Adds a nzero_real variable to store
	the number of leading zeros whatever the format width is. Corrects
	the rounding of numbers less than 10^(-width). Fixes typo in an
	error message. Updates copyright years

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/io/write.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.23.2.2&r2=1.23.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.163.2.3&r2=1.163.2.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.5084.2.36&r2=1.5084.2.37
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/pr20124.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.2.1



-- 


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


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

* [Bug libfortran/20124] gfortran prints -.01 incorrectly
  2005-02-21 23:13 [Bug fortran/20124] New: gfortran prints -.01 incorrectly dir at lanl dot gov
                   ` (4 preceding siblings ...)
  2005-03-11  8:03 ` cvs-commit at gcc dot gnu dot org
@ 2005-03-11 14:17 ` pinskia at gcc dot gnu dot org
  2005-03-15 21:49 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-03-11 14:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-03-11 14:16 -------
Fixed, thanks for your report.

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


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


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

* [Bug libfortran/20124] gfortran prints -.01 incorrectly
  2005-02-21 23:13 [Bug fortran/20124] New: gfortran prints -.01 incorrectly dir at lanl dot gov
                   ` (5 preceding siblings ...)
  2005-03-11 14:17 ` pinskia at gcc dot gnu dot org
@ 2005-03-15 21:49 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-03-15 21:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-03-15 21:49 -------
Note I think this fixed a couple of SPEC 95 tests as they no longer mis compare.

-- 


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


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

end of thread, other threads:[~2005-03-15 21:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-21 23:13 [Bug fortran/20124] New: gfortran prints -.01 incorrectly dir at lanl dot gov
2005-02-21 23:17 ` [Bug libfortran/20124] " pinskia at gcc dot gnu dot org
2005-02-24 20:40 ` coudert at clipper dot ens dot fr
2005-02-24 22:18 ` coudert at clipper dot ens dot fr
2005-03-11  8:03 ` cvs-commit at gcc dot gnu dot org
2005-03-11  8:03 ` cvs-commit at gcc dot gnu dot org
2005-03-11 14:17 ` pinskia at gcc dot gnu dot org
2005-03-15 21:49 ` 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).