diff options
| author | Dylan Fleming <Dylan.Fleming@arm.com> | 2025-05-19 12:44:20 +0000 |
|---|---|---|
| committer | Wilco Dijkstra <wilco.dijkstra@arm.com> | 2025-05-19 15:34:40 +0000 |
| commit | edf620281501fbf314855aa9b321688f280e9220 (patch) | |
| tree | f3c3c37f52b6e0ed51bd7cbee8def1cf86607a67 /math | |
| parent | 0ef2cf44e7784fc357660d80aed72f195485439f (diff) | |
AArch64: Implement AdvSIMD and SVE atanpi/f
Implement double and single precision variants of the C23 routine atanpi
for both AdvSIMD and SVE.
Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
Diffstat (limited to 'math')
| -rw-r--r-- | math/bits/mathcalls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h index 573cec9d49..1a06a8cad6 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -74,6 +74,7 @@ __MATHCALL (asinpi,, (_Mdouble_ __x)); __MATHCALL_VEC (asinpi,, (_Mdouble_ __x)); /* Arc tangent of X, divided by pi. */ __MATHCALL (atanpi,, (_Mdouble_ __x)); +__MATHCALL_VEC (atanpi,, (_Mdouble_ __x)); /* Arc tangent of Y/X, divided by pi. */ __MATHCALL (atan2pi,, (_Mdouble_ __y, _Mdouble_ __x)); |
