public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug math/13872] New: powl (10, -LDBL_MAX) raises spurious overflow exception
@ 2012-03-20  0:52 jsm28 at gcc dot gnu.org
  2012-04-09 22:36 ` [Bug math/13872] " jsm28 at gcc dot gnu.org
  2014-06-26 13:48 ` fweimer at redhat dot com
  0 siblings, 2 replies; 3+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2012-03-20  0:52 UTC (permalink / raw)
  To: glibc-bugs

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

             Bug #: 13872
           Summary: powl (10, -LDBL_MAX) raises spurious overflow
                    exception
           Product: glibc
           Version: 2.15
            Status: NEW
          Severity: normal
          Priority: P2
         Component: math
        AssignedTo: unassigned@sourceware.org
        ReportedBy: jsm28@gcc.gnu.org
    Classification: Unclassified


powl (10, -LDBL_MAX) raises a spurious overflow exception (this is an underflow
case, not overflow) on x86 and x86_64.  Testcase:

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

volatile long double d1 = 10, d2 = -LDBL_MAX;

int
main (void)
{
  feclearexcept (FE_ALL_EXCEPT);
  errno = 0;
  volatile long double r = powl (d1, d2);
  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 ("%.18Lg %m\n", r);
  return 0;
}

-- 
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/13872] powl (10, -LDBL_MAX) raises spurious overflow exception
  2012-03-20  0:52 [Bug math/13872] New: powl (10, -LDBL_MAX) raises spurious overflow exception jsm28 at gcc dot gnu.org
@ 2012-04-09 22:36 ` jsm28 at gcc dot gnu.org
  2014-06-26 13:48 ` fweimer at redhat dot com
  1 sibling, 0 replies; 3+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2012-04-09 22:36 UTC (permalink / raw)
  To: glibc-bugs

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

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-04-09 22:36:13 UTC ---
Fixed by:

commit 8f9a2faee0619ed5fad7b9c54b64f866b0264bde
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Apr 9 22:32:45 2012 +0000

    Fix spurious overflow exceptions from x86/x86_64 powl (bug 13872).

-- 
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/13872] powl (10, -LDBL_MAX) raises spurious overflow exception
  2012-03-20  0:52 [Bug math/13872] New: powl (10, -LDBL_MAX) raises spurious overflow exception jsm28 at gcc dot gnu.org
  2012-04-09 22:36 ` [Bug math/13872] " jsm28 at gcc dot gnu.org
@ 2014-06-26 13:48 ` fweimer at redhat dot com
  1 sibling, 0 replies; 3+ messages in thread
From: fweimer at redhat dot com @ 2014-06-26 13:48 UTC (permalink / raw)
  To: glibc-bugs

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

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 13:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-20  0:52 [Bug math/13872] New: powl (10, -LDBL_MAX) raises spurious overflow exception jsm28 at gcc dot gnu.org
2012-04-09 22:36 ` [Bug math/13872] " jsm28 at gcc dot gnu.org
2014-06-26 13:48 ` 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).