mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-24 12:25:35 +08:00
BZ #15055: Use __ieee754_sqrl in acoshl for lbdl-128ibm
(backported from e0b780ad5b
)
This commit is contained in:
parent
9ba3d0c7f4
commit
496c92958b
@ -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
2
NEWS
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user