aboutsummaryrefslogtreecommitdiff
path: root/pl/math/v_erff_1u5.c
diff options
context:
space:
mode:
authorJoe Ramsay <Joe.Ramsay@arm.com>2022-08-15 11:19:25 +0100
committerJoe Ramsay <joe.ramsay@arm.com>2022-08-15 11:19:25 +0100
commit3d1a87e2fe152dc52d4a624425f5b2349a4088b0 (patch)
tree99783779892d32a033e6fc7c91dcc1a956b62b94 /pl/math/v_erff_1u5.c
parent46ee91e02f58caf2a7db402bdcca2ede6bb7285c (diff)
downloadarm-optimized-routines-3d1a87e2fe152dc52d4a624425f5b2349a4088b0.tar.gz
pl/math: Audit Neon special-case handlers
Prevent inlining in most cases - change to use AOR style (NOINLINE).
Diffstat (limited to 'pl/math/v_erff_1u5.c')
-rw-r--r--pl/math/v_erff_1u5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pl/math/v_erff_1u5.c b/pl/math/v_erff_1u5.c
index 7c910bd..4407cd1 100644
--- a/pl/math/v_erff_1u5.c
+++ b/pl/math/v_erff_1u5.c
@@ -16,7 +16,7 @@ VPCS_ATTR v_f32_t V_NAME (expf) (v_f32_t);
/* Special cases (fall back to scalar calls). */
VPCS_ATTR
-__attribute__ ((noinline)) static v_f32_t
+NOINLINE static v_f32_t
specialcase (v_f32_t x, v_f32_t y, v_u32_t cmp)
{
return v_call_f32 (erff, x, y, cmp);