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