summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/math/arm/sqrtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/math/arm/sqrtf.c')
-rw-r--r--libc-top-half/musl/src/math/arm/sqrtf.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/arm/sqrtf.c b/libc-top-half/musl/src/math/arm/sqrtf.c
new file mode 100644
index 0000000..3269329
--- /dev/null
+++ b/libc-top-half/musl/src/math/arm/sqrtf.c
@@ -0,0 +1,15 @@
+#include <math.h>
+
+#if (__ARM_PCS_VFP || (__VFP_FP__ && !__SOFTFP__)) && !BROKEN_VFP_ASM
+
+float sqrtf(float x)
+{
+ __asm__ ("vsqrt.f32 %0, %1" : "=t"(x) : "t"(x));
+ return x;
+}
+
+#else
+
+#include "../sqrtf.c"
+
+#endif