This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug math/18196] atanf spurious underflows


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

--- 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  9a71f1fcf53615c00b5f9e5da4bba92bccb0efb4 (commit)
      from  0b7a5f920163d03806d7c5d9d1c83b16942c9496 (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=9a71f1fcf53615c00b5f9e5da4bba92bccb0efb4

commit 9a71f1fcf53615c00b5f9e5da4bba92bccb0efb4
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Thu May 14 23:51:09 2015 +0000

    Fix atanf spurious underflows (bug 18196).

    The sysdeps/ieee754/flt-32 version of atanf produces spurious
    underflow exceptions for some large arguments, because of computations
    that compute x^-4.  This patch fixes this by adjusting the threshold
    for large arguments (for which +/- pi/2 can just be returned, the
    correct result being roughly +/- pi/2 - 1/x) from 2^34 to 2^25.

    Tested for x86_64 and x86.

        [BZ #18196]
        * sysdeps/ieee754/flt-32/s_atanf.c (__atanf): Use 2^25 not 2^34 as
        threshold for large arguments.
        * math/auto-libm-test-in: Add another test of atan.
        * math/auto-libm-test-out: Regenerated.

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

Summary of changes:
 ChangeLog                        |    6 ++++++
 NEWS                             |    4 ++--
 math/auto-libm-test-in           |    1 +
 math/auto-libm-test-out          |   25 +++++++++++++++++++++++++
 sysdeps/ieee754/flt-32/s_atanf.c |    2 +-
 5 files changed, 35 insertions(+), 3 deletions(-)

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]