public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug math/13787] New: expm1 (1e5) does not raise OVERFLOW exception on x86
@ 2012-02-29 22:32 jsm28 at gcc dot gnu.org
  2012-05-05 19:45 ` [Bug math/13787] " jsm28 at gcc dot gnu.org
  2014-06-26 14:03 ` fweimer at redhat dot com
  0 siblings, 2 replies; 3+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2012-02-29 22:32 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13787

             Bug #: 13787
           Summary: expm1 (1e5) does not raise OVERFLOW exception on x86
           Product: glibc
           Version: 2.15
            Status: NEW
          Severity: normal
          Priority: P2
         Component: math
        AssignedTo: unassigned@sourceware.org
        ReportedBy: jsm28@gcc.gnu.org
    Classification: Unclassified
              Host: i686-pc-linux-gnu


On x86, expm1 (1e5) properly returns an infinity with errno set to ERANGE - but
does not raise the OVERFLOW exception.  On x86_64, OVERFLOW is properly raised.

Testcase:

#include <errno.h>
#include <fenv.h>
#include <math.h>
#include <stdio.h>
#include <float.h>

volatile double d = 1e5;

int
main (void)
{
  feclearexcept (FE_ALL_EXCEPT);
  errno = 0;
  volatile double r = expm1 (d);
  if (fetestexcept (FE_DIVBYZERO))
    printf ("DIVBYZERO ");
  if (fetestexcept (FE_INEXACT))
    printf ("INEXACT ");
  if (fetestexcept (FE_INVALID))
    printf ("INVALID ");
  if (fetestexcept (FE_OVERFLOW))
    printf ("OVERFLOW ");
  if (fetestexcept (FE_UNDERFLOW))
    printf ("UNDERFLOW ");
  printf ("%.18g %m\n", r);
  return 0;
}

Result:

inf Numerical result out of range

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug math/13787] expm1 (1e5) does not raise OVERFLOW exception on x86
  2012-02-29 22:32 [Bug math/13787] New: expm1 (1e5) does not raise OVERFLOW exception on x86 jsm28 at gcc dot gnu.org
@ 2012-05-05 19:45 ` jsm28 at gcc dot gnu.org
  2014-06-26 14:03 ` fweimer at redhat dot com
  1 sibling, 0 replies; 3+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2012-05-05 19:45 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13787

Joseph Myers <jsm28 at gcc dot gnu.org> changed:

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

--- Comment #1 from Joseph Myers <jsm28 at gcc dot gnu.org> 2012-05-05 19:45:24 UTC ---
Fixed by:

commit 41498f4db1ebfeb2fb76b9137cba38c20000f1d3
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Sat May 5 19:37:39 2012 +0000

    Fix missing exceptions from exp (bugs 13787, 13922, 14036).

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug math/13787] expm1 (1e5) does not raise OVERFLOW exception on x86
  2012-02-29 22:32 [Bug math/13787] New: expm1 (1e5) does not raise OVERFLOW exception on x86 jsm28 at gcc dot gnu.org
  2012-05-05 19:45 ` [Bug math/13787] " jsm28 at gcc dot gnu.org
@ 2014-06-26 14:03 ` fweimer at redhat dot com
  1 sibling, 0 replies; 3+ messages in thread
From: fweimer at redhat dot com @ 2014-06-26 14:03 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13787

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
              Flags|                            |security-

-- 
You are receiving this mail because:
You are on the CC list for the bug.


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

end of thread, other threads:[~2014-06-26 14:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-29 22:32 [Bug math/13787] New: expm1 (1e5) does not raise OVERFLOW exception on x86 jsm28 at gcc dot gnu.org
2012-05-05 19:45 ` [Bug math/13787] " jsm28 at gcc dot gnu.org
2014-06-26 14:03 ` fweimer at redhat dot com

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).