public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug math/16384] New: ldbl-128ibm acoshl inaccurate
@ 2014-01-01 18:14 jsm28 at gcc dot gnu.org
  2014-01-02 16:33 ` [Bug math/16384] " cvs-commit at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2014-01-01 18:14 UTC (permalink / raw)
  To: glibc-bugs

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

            Bug ID: 16384
           Summary: ldbl-128ibm acoshl inaccurate
           Product: glibc
           Version: 2.19
            Status: NEW
          Severity: normal
          Priority: P2
         Component: math
          Assignee: unassigned at sourceware dot org
          Reporter: jsm28 at gcc dot gnu.org

ldbl-128ibm acoshl is inaccurate for some inputs, e.g.:

Test "acosh (0x1.ap+0)":
ildouble: 2244803385201568
ldouble: 2244803385201568

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


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

* [Bug math/16384] ldbl-128ibm acoshl inaccurate
  2014-01-01 18:14 [Bug math/16384] New: ldbl-128ibm acoshl inaccurate jsm28 at gcc dot gnu.org
@ 2014-01-02 16:33 ` cvs-commit at gcc dot gnu.org
  2014-01-02 16:37 ` jsm28 at gcc dot gnu.org
  2014-06-13  9:14 ` fweimer at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2014-01-02 16:33 UTC (permalink / raw)
  To: glibc-bugs

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

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  396e3ecf3e8f0f05bd7eeaf995a3f0c2327a6cd6 (commit)
      from  6c8dbf00f536d78b1937b5af6f57be47fd376344 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=396e3ecf3e8f0f05bd7eeaf995a3f0c2327a6cd6

commit 396e3ecf3e8f0f05bd7eeaf995a3f0c2327a6cd6
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Thu Jan 2 16:33:06 2014 +0000

    Fix ldbl-128ibm acoshl inaccuracy (bug 16384).

    This patch fixes bug 16384, ldbl-128ibm acoshl inaccuracy, which
    showed up while attempting to regenerate ulps for powerpc-nofpu for
    2.19.  There were two separate problems, use of __log1p instead of
    __log1pl and an insufficiently accurate constant value for log 2
    (which this patch replaces by use of M_LN2l), each of which could
    cause substantial inaccuracy in affected cases.

    Tested for powerpc-nofpu.

        * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with
        M_LN2l.
        (__ieee754_acoshl): Use __log1pl not __log1p.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                              |    7 +++++++
 NEWS                                   |    2 +-
 sysdeps/ieee754/ldbl-128ibm/e_acoshl.c |    4 ++--
 3 files changed, 10 insertions(+), 3 deletions(-)

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


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

* [Bug math/16384] ldbl-128ibm acoshl inaccurate
  2014-01-01 18:14 [Bug math/16384] New: ldbl-128ibm acoshl inaccurate jsm28 at gcc dot gnu.org
  2014-01-02 16:33 ` [Bug math/16384] " cvs-commit at gcc dot gnu.org
@ 2014-01-02 16:37 ` jsm28 at gcc dot gnu.org
  2014-06-13  9:14 ` fweimer at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2014-01-02 16:37 UTC (permalink / raw)
  To: glibc-bugs

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

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

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

--- Comment #2 from Joseph Myers <jsm28 at gcc dot gnu.org> ---
Fixed for 2.19.

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


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

* [Bug math/16384] ldbl-128ibm acoshl inaccurate
  2014-01-01 18:14 [Bug math/16384] New: ldbl-128ibm acoshl inaccurate jsm28 at gcc dot gnu.org
  2014-01-02 16:33 ` [Bug math/16384] " cvs-commit at gcc dot gnu.org
  2014-01-02 16:37 ` jsm28 at gcc dot gnu.org
@ 2014-06-13  9:14 ` fweimer at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: fweimer at redhat dot com @ 2014-06-13  9:14 UTC (permalink / raw)
  To: glibc-bugs

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

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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-01 18:14 [Bug math/16384] New: ldbl-128ibm acoshl inaccurate jsm28 at gcc dot gnu.org
2014-01-02 16:33 ` [Bug math/16384] " cvs-commit at gcc dot gnu.org
2014-01-02 16:37 ` jsm28 at gcc dot gnu.org
2014-06-13  9:14 ` 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).