diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-03-04 11:37:51 -0300 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-03-04 11:37:51 -0300 |
commit | e0b780ad5b94209bf99bf498314bc5c160dc2a15 (patch) | |
tree | 1fcbe7a7991d0d2cac6c58ca8645da7065253836 /sysdeps | |
parent | 68508633191ec7577809a091e7c897b2dd2cdab9 (diff) | |
download | glibc-e0b780ad5b94209bf99bf498314bc5c160dc2a15.tar.gz glibc-e0b780ad5b94209bf99bf498314bc5c160dc2a15.tar.xz glibc-e0b780ad5b94209bf99bf498314bc5c160dc2a15.zip |
BZ #15055: Use __ieee754_sqrl in acoshl for lbdl-128ibm
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ieee754/ldbl-128ibm/e_acoshl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c b/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c index 117bd0f052..abc78a35bd 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c @@ -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) |