BZ #15055: Use __ieee754_sqrl in acoshl for lbdl-128ibm

(backported from e0b780ad5b)
This commit is contained in:
Ryan S. Arnold 2013-07-25 12:34:03 -05:00
parent 9ba3d0c7f4
commit 496c92958b
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2013-02-28 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
[BZ #15055]
* sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
__ieee754_sqrl instead of __sqrl.
2013-01-18 Anton Blanchard <anton@samba.org>
Ryan S. Arnold <rsa@linux.vnet.ibm.com>

2
NEWS
View File

@ -8,7 +8,7 @@ using `glibc' in the "product" field.
Version 2.17.1
* The following bugs are resolved with this release:
15003, 15006, 15122, 15759.
15003, 15006, 15055, 15122, 15759.
Version 2.17

View File

@ -52,7 +52,7 @@ __ieee754_acoshl(long double x)
return __ieee754_logl(2.0*x-one/(x+__ieee754_sqrtl(t-one)));
} else { /* 1<x<2 */
t = x-one;
return __log1p(t+__sqrtl(2.0*t+t*t));
return __log1p(t+__ieee754_sqrtl(2.0*t+t*t));
}
}
strong_alias (__ieee754_acoshl, __acoshl_finite)