]> sourceware.org Git - glibc.git/commitdiff
Fix dbl-64 acos (sNaN) (bug 20212).
authorJoseph Myers <joseph@codesourcery.com>
Mon, 6 Jun 2016 22:10:11 +0000 (22:10 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 6 Jun 2016 22:10:11 +0000 (22:10 +0000)
The dbl-64 version of acos returns sNaN for sNaN arguments.  This
patch fixes it to add NaN arguments to themselves so that qNaN is
returned in this case.

Tested for x86_64 and x86.

[BZ #20212]
* sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_acos): Add NaN
argument to itself.
* math/libm-test.inc (acos_test_data): Add sNaN tests.

ChangeLog
math/libm-test.inc
sysdeps/ieee754/dbl-64/e_asin.c

index 6c1c36a090b15626ed62b1ee82921544eb3ae940..9930b5e5c2aba246203b154d04bb8e513728020c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-06-06  Joseph Myers  <joseph@codesourcery.com>
+
+       [BZ #20212]
+       * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_acos): Add NaN
+       argument to itself.
+       * math/libm-test.inc (acos_test_data): Add sNaN tests.
+
 2016-06-06  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
 
        * sysdeps/powerpc/powerpc64/power8/strcasestr.S (__strcasestr):
index aaa01488ec771ebc19536c3537eb12591b3e792c..698172080c21a6ddc64bd13b3465841f752a3d47 100644 (file)
@@ -1799,6 +1799,8 @@ static const struct test_f_f_data acos_test_data[] =
     TEST_f_f (acos, minus_infty, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
     TEST_f_f (acos, qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
     TEST_f_f (acos, -qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_f_f (acos, snan_value, qnan_value, INVALID_EXCEPTION),
+    TEST_f_f (acos, -snan_value, qnan_value, INVALID_EXCEPTION),
 
     /* |x| > 1: */
     TEST_f_f (acos, 1.125L, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
index d8c012d1d3c50b5503a887f9707207f64337d894..5d5fb0113254834f6368ebbb05aa241bfd553770 100644 (file)
@@ -633,7 +633,7 @@ __ieee754_acos(double x)
   else
   if (k==0x3ff00000 && u.i[LOW_HALF]==0) return (m>0)?0:2.0*hp0.x;
   else
-  if (k>0x7ff00000 || (k == 0x7ff00000 && u.i[LOW_HALF] != 0)) return x;
+  if (k>0x7ff00000 || (k == 0x7ff00000 && u.i[LOW_HALF] != 0)) return x + x;
   else {
     u.i[HIGH_HALF]=0x7ff00000;
     v.i[HIGH_HALF]=0x7ff00000;
This page took 0.223787 seconds and 5 git commands to generate.