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