public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug math/17031] New: [powerpc] nearbyintl() returns incorrect result for few inputs
@ 2014-06-06  8:47 raji at linux dot vnet.ibm.com
  2014-06-06  8:50 ` [Bug math/17031] " raji at linux dot vnet.ibm.com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: raji at linux dot vnet.ibm.com @ 2014-06-06  8:47 UTC (permalink / raw)
  To: glibc-bugs

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

            Bug ID: 17031
           Summary: [powerpc] nearbyintl() returns incorrect result for
                    few inputs
           Product: glibc
           Version: 2.20
            Status: NEW
          Severity: normal
          Priority: P2
         Component: math
          Assignee: unassigned at sourceware dot org
          Reporter: raji at linux dot vnet.ibm.com

#include <stdio.h>
#include <math.h>
int
main()
{
  printf("%Lf\n",nearbyintl(4503599627370494.5000000000001L));
  printf("%Lf\n",nearbyintl(-4503599627370494.5000000000001L));
  exit (0);
}

Output:
4503599627370494.000000
-4503599627370494.000000

Expected Output:
4503599627370495.000000
-4503599627370495.000000

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


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

* [Bug math/17031] [powerpc] nearbyintl() returns incorrect result for few inputs
  2014-06-06  8:47 [Bug math/17031] New: [powerpc] nearbyintl() returns incorrect result for few inputs raji at linux dot vnet.ibm.com
@ 2014-06-06  8:50 ` raji at linux dot vnet.ibm.com
  2014-06-06  8:51 ` raji at linux dot vnet.ibm.com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: raji at linux dot vnet.ibm.com @ 2014-06-06  8:50 UTC (permalink / raw)
  To: glibc-bugs

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

Rajalakshmi <raji at linux dot vnet.ibm.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at sourceware dot org   |raji at linux dot vnet.ibm.com

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


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

* [Bug math/17031] [powerpc] nearbyintl() returns incorrect result for few inputs
  2014-06-06  8:47 [Bug math/17031] New: [powerpc] nearbyintl() returns incorrect result for few inputs raji at linux dot vnet.ibm.com
  2014-06-06  8:50 ` [Bug math/17031] " raji at linux dot vnet.ibm.com
@ 2014-06-06  8:51 ` raji at linux dot vnet.ibm.com
  2014-06-12 19:04 ` fweimer at redhat dot com
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: raji at linux dot vnet.ibm.com @ 2014-06-06  8:51 UTC (permalink / raw)
  To: glibc-bugs

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

Rajalakshmi <raji at linux dot vnet.ibm.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED

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


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

* [Bug math/17031] [powerpc] nearbyintl() returns incorrect result for few inputs
  2014-06-06  8:47 [Bug math/17031] New: [powerpc] nearbyintl() returns incorrect result for few inputs raji at linux dot vnet.ibm.com
  2014-06-06  8:50 ` [Bug math/17031] " raji at linux dot vnet.ibm.com
  2014-06-06  8:51 ` raji at linux dot vnet.ibm.com
@ 2014-06-12 19:04 ` fweimer at redhat dot com
  2014-06-19  4:28 ` raji at linux dot vnet.ibm.com
  2014-06-19  4:30 ` raji at linux dot vnet.ibm.com
  4 siblings, 0 replies; 6+ messages in thread
From: fweimer at redhat dot com @ 2014-06-12 19:04 UTC (permalink / raw)
  To: glibc-bugs

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

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] 6+ messages in thread

* [Bug math/17031] [powerpc] nearbyintl() returns incorrect result for few inputs
  2014-06-06  8:47 [Bug math/17031] New: [powerpc] nearbyintl() returns incorrect result for few inputs raji at linux dot vnet.ibm.com
                   ` (2 preceding siblings ...)
  2014-06-12 19:04 ` fweimer at redhat dot com
@ 2014-06-19  4:28 ` raji at linux dot vnet.ibm.com
  2014-06-19  4:30 ` raji at linux dot vnet.ibm.com
  4 siblings, 0 replies; 6+ messages in thread
From: raji at linux dot vnet.ibm.com @ 2014-06-19  4:28 UTC (permalink / raw)
  To: glibc-bugs

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

--- Comment #1 from Rajalakshmi <raji at linux dot vnet.ibm.com> ---
Patch submitted and commited as 754c5a08aacb44895d1ab97c553ce424eb43f761.

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


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

* [Bug math/17031] [powerpc] nearbyintl() returns incorrect result for few inputs
  2014-06-06  8:47 [Bug math/17031] New: [powerpc] nearbyintl() returns incorrect result for few inputs raji at linux dot vnet.ibm.com
                   ` (3 preceding siblings ...)
  2014-06-19  4:28 ` raji at linux dot vnet.ibm.com
@ 2014-06-19  4:30 ` raji at linux dot vnet.ibm.com
  4 siblings, 0 replies; 6+ messages in thread
From: raji at linux dot vnet.ibm.com @ 2014-06-19  4:30 UTC (permalink / raw)
  To: glibc-bugs

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

Rajalakshmi <raji at linux dot vnet.ibm.com> changed:

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

--- Comment #2 from Rajalakshmi <raji at linux dot vnet.ibm.com> ---
Fixed

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


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

end of thread, other threads:[~2014-06-19  4:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-06  8:47 [Bug math/17031] New: [powerpc] nearbyintl() returns incorrect result for few inputs raji at linux dot vnet.ibm.com
2014-06-06  8:50 ` [Bug math/17031] " raji at linux dot vnet.ibm.com
2014-06-06  8:51 ` raji at linux dot vnet.ibm.com
2014-06-12 19:04 ` fweimer at redhat dot com
2014-06-19  4:28 ` raji at linux dot vnet.ibm.com
2014-06-19  4:30 ` raji at linux dot vnet.ibm.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).