aboutsummaryrefslogtreecommitdiff
path: root/math/vn_pow.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/vn_pow.c')
-rw-r--r--math/vn_pow.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/math/vn_pow.c b/math/vn_pow.c
new file mode 100644
index 0000000..2609501
--- /dev/null
+++ b/math/vn_pow.c
@@ -0,0 +1,12 @@
+/*
+ * AdvSIMD vector PCS variant of __v_pow.
+ *
+ * Copyright (c) 2020, Arm Limited.
+ * SPDX-License-Identifier: MIT
+ */
+#include "mathlib.h"
+#ifdef __vpcs
+#define VPCS 1
+#define VPCS_ALIAS strong_alias (__vn_pow, _ZGVnN2vv_pow)
+#include "v_pow.c"
+#endif