aboutsummaryrefslogtreecommitdiff
path: root/math/bits
diff options
context:
space:
mode:
authorJoe Ramsay <Joe.Ramsay@arm.com>2024-09-19 17:34:02 +0100
committerWilco Dijkstra <wilco.dijkstra@arm.com>2024-09-19 17:53:34 +0100
commit751a5502bea1d13551c62c47bb9bd25bff870cda (patch)
treeb7fea4ef7859d77c53706167a022f8e43c8c6d9e /math/bits
parent45246705456aa06df70b30233db3bf99ee008f58 (diff)
downloadglibc-751a5502bea1d13551c62c47bb9bd25bff870cda.tar.xz
glibc-751a5502bea1d13551c62c47bb9bd25bff870cda.zip
AArch64: Add vector logp1 alias for log1p
This enables vectorisation of C23 logp1, which is an alias for log1p. There are no new tests or ulp entries because the new symbols are simply aliases. Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
Diffstat (limited to 'math/bits')
-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 6cb594b6ff..92856becc4 100644
--- a/math/bits/mathcalls.h
+++ b/math/bits/mathcalls.h
@@ -126,7 +126,7 @@ __MATHCALL (log2p1,, (_Mdouble_ __x));
__MATHCALL (log10p1,, (_Mdouble_ __x));
/* Return log(1 + X). */
-__MATHCALL (logp1,, (_Mdouble_ __x));
+__MATHCALL_VEC (logp1,, (_Mdouble_ __x));
#endif
#if defined __USE_XOPEN_EXTENDED || defined __USE_ISOC99