summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorSunil K Pandey <skpgkp2@gmail.com>2021-12-29 09:48:17 -0800
committerSunil K Pandey <skpgkp2@gmail.com>2021-12-29 11:38:39 -0800
commit0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17 (patch)
tree95e5dc4a10517ff5f1925d1e707b39dc34e1b7f9 /math
parent6dea4dd3dae3eb488361c081365a0518f327dacf (diff)
downloadglibc-0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17.tar.gz
x86-64: Add vector acosh/acoshf implementation to libmvec
Implement vectorized acosh/acoshf containing SSE, AVX, AVX2 and AVX512 versions for libmvec as per vector ABI. It also contains accuracy and ABI tests for vector acosh/acoshf with regenerated ulps. Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'math')
-rw-r--r--math/bits/mathcalls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h
index 04dd9c5d1b..bc37973c41 100644
--- a/math/bits/mathcalls.h
+++ b/math/bits/mathcalls.h
@@ -82,7 +82,7 @@ __MATHDECL_VEC (void,sincos,,
#if defined __USE_XOPEN_EXTENDED || defined __USE_ISOC99
/* Hyperbolic arc cosine of X. */
-__MATHCALL (acosh,, (_Mdouble_ __x));
+__MATHCALL_VEC (acosh,, (_Mdouble_ __x));
/* Hyperbolic arc sine of X. */
__MATHCALL (asinh,, (_Mdouble_ __x));
/* Hyperbolic arc tangent of X. */