From c21c7bc24ec58c516d1608695d9c5a86f2f2fc0c Mon Sep 17 00:00:00 2001 From: Sunil K Pandey Date: Wed, 29 Dec 2021 10:19:39 -0800 Subject: x86-64: Add vector tan/tanf implementation to libmvec Implement vectorized tan/tanf containing SSE, AVX, AVX2 and AVX512 versions for libmvec as per vector ABI. It also contains accuracy and ABI tests for vector tan/tanf with regenerated ulps. Reviewed-by: H.J. Lu --- math/bits/mathcalls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math') diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h index 24e28b5c4f..999ae4d703 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -63,7 +63,7 @@ __MATHCALL_VEC (cos,, (_Mdouble_ __x)); /* Sine of X. */ __MATHCALL_VEC (sin,, (_Mdouble_ __x)); /* Tangent of X. */ -__MATHCALL (tan,, (_Mdouble_ __x)); +__MATHCALL_VEC (tan,, (_Mdouble_ __x)); /* Hyperbolic functions. */ -- cgit 1.4.1