1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Fix signs of zeros from casinh, cacosh etc. (bug 10716).

This commit is contained in:
Joseph Myers
2012-03-07 15:15:19 +00:00
parent a4300c7a4d
commit d1d3431a3a
11 changed files with 750 additions and 21 deletions

View File

@ -1,5 +1,5 @@
/* Return arc hyperbole cosine for long double value.
Copyright (C) 1997, 1998, 2006, 2011 Free Software Foundation, Inc.
Copyright (C) 1997-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -66,10 +66,14 @@ __cacoshl (__complex__ long double x)
}
/* The factor 16 is just a guess. */
else if (16.0L * fabsl (__imag__ x) < fabsl (__real__ x))
/* Kahan's formula which avoid cancellation through subtraction in
some cases. */
res = 2.0L * __clogl (__csqrtl ((x + 1.0L) / 2.0L)
+ __csqrtl ((x - 1.0L) / 2.0L));
{
/* Kahan's formula which avoid cancellation through subtraction in
some cases. */
res = 2.0L * __clogl (__csqrtl ((x + 1.0L) / 2.0L)
+ __csqrtl ((x - 1.0L) / 2.0L));
if (signbit (__real__ res))
__real__ res = 0.0L;
}
else
{
__complex__ long double y;