commit | 4088e3a587b6f84f9b51d5e81332b1a56df4b225 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Thu Aug 03 13:33:56 2023 -0700 |
committer | Elliott Hughes <enh@google.com> | Thu Aug 03 13:33:56 2023 -0700 |
tree | 2943d17d0197fa84cd604b39f876d53e8836db14 | |
parent | c4d3867b6c6fc669dba80d3b222d37dc56ea98ac [diff] [blame] |
Sync upstream FreeBSD libm. Test: treehugger Change-Id: I583a3e93821d512c975db34fc1610ffd22445d58
diff --git a/libm/upstream-freebsd/lib/msun/src/e_atanh.c b/libm/upstream-freebsd/lib/msun/src/e_atanh.c index 422ff26..41f3bca 100644 --- a/libm/upstream-freebsd/lib/msun/src/e_atanh.c +++ b/libm/upstream-freebsd/lib/msun/src/e_atanh.c
@@ -15,7 +15,7 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -/* __ieee754_atanh(x) +/* atanh(x) * Method : * 1.Reduced x to positive by atanh(-x) = -atanh(x) * 2.For x>=0.5 @@ -42,7 +42,7 @@ static const double zero = 0.0; double -__ieee754_atanh(double x) +atanh(double x) { double t; int32_t hx,ix;