public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/14059] New: [gfortran] Underflow while compiling a constant expression
@ 2004-02-07  3:10 bdavis9659 at comcast dot net
  2004-02-07 18:43 ` [Bug fortran/14059] " pinskia at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: bdavis9659 at comcast dot net @ 2004-02-07  3:10 UTC (permalink / raw)
  To: gcc-bugs

$ cat a.f
        AVS = SQRT(9.125) ** 2 - 9.125
        PRINT*,AVS
        END
$ g77 a.f
$ ./a.out
  0.
$ /usr/local/bin/gfortran -static a.f
 In file a.f:1
 
        AVS = SQRT(9.125) ** 2 - 9.125
                 1
Error: Arithmetic underflow at (1)
$ gfortran --version
GNU Fortran 95 (GCC 3.5-tree-ssa 20040206 (merged 20040126))

-- 
           Summary: [gfortran] Underflow while compiling a constant
                    expression
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        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=14059


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

* [Bug fortran/14059] [gfortran] Underflow while compiling a constant expression
  2004-02-07  3:10 [Bug fortran/14059] New: [gfortran] Underflow while compiling a constant expression bdavis9659 at comcast dot net
@ 2004-02-07 18:43 ` pinskia at gcc dot gnu dot org
  2004-04-05  0:09 ` 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 @ 2004-02-07 18:43 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-02-07 18:43 -------
Confirmed, the underflow/overflow errors maybe should be able to change to warnings.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |rejects-valid
   Last reconfirmed|0000-00-00 00:00:00         |2004-02-07 18:43:19
               date|                            |
   Target Milestone|---                         |tree-ssa


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


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

* [Bug fortran/14059] [gfortran] Underflow while compiling a constant expression
  2004-02-07  3:10 [Bug fortran/14059] New: [gfortran] Underflow while compiling a constant expression bdavis9659 at comcast dot net
  2004-02-07 18:43 ` [Bug fortran/14059] " pinskia at gcc dot gnu dot org
@ 2004-04-05  0:09 ` pinskia at gcc dot gnu dot org
  2004-05-19 13:29 ` sgk at troutmask dot apl dot washington dot edu
  2004-05-26 23:09 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-04-05  0:09 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-04-05 00:09 -------
Patch here: <http://gcc.gnu.org/ml/fortran/2004-04/msg00045.html>.

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


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


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

* [Bug fortran/14059] [gfortran] Underflow while compiling a constant expression
  2004-02-07  3:10 [Bug fortran/14059] New: [gfortran] Underflow while compiling a constant expression bdavis9659 at comcast dot net
  2004-02-07 18:43 ` [Bug fortran/14059] " pinskia at gcc dot gnu dot org
  2004-04-05  0:09 ` pinskia at gcc dot gnu dot org
@ 2004-05-19 13:29 ` sgk at troutmask dot apl dot washington dot edu
  2004-05-26 23:09 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: sgk at troutmask dot apl dot washington dot edu @ 2004-05-19 13:29 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From sgk at troutmask dot apl dot washington dot edu  2004-05-18 22:05 -------
A better fix for this bug has been posted.
http://gcc.gnu.org/ml/gcc-patches/2004-05/msg01139.html

-- 


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


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

* [Bug fortran/14059] [gfortran] Underflow while compiling a constant expression
  2004-02-07  3:10 [Bug fortran/14059] New: [gfortran] Underflow while compiling a constant expression bdavis9659 at comcast dot net
                   ` (2 preceding siblings ...)
  2004-05-19 13:29 ` sgk at troutmask dot apl dot washington dot edu
@ 2004-05-26 23:09 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-05-26 23:09 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-05-26 14:07 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2004-05-26 14:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-02-07  3:10 [Bug fortran/14059] New: [gfortran] Underflow while compiling a constant expression bdavis9659 at comcast dot net
2004-02-07 18:43 ` [Bug fortran/14059] " pinskia at gcc dot gnu dot org
2004-04-05  0:09 ` pinskia at gcc dot gnu dot org
2004-05-19 13:29 ` sgk at troutmask dot apl dot washington dot edu
2004-05-26 23:09 ` 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).