summaryrefslogtreecommitdiff
path: root/src/math/riscv64/sqrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/riscv64/sqrt.c')
-rw-r--r--src/math/riscv64/sqrt.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/math/riscv64/sqrt.c b/src/math/riscv64/sqrt.c
new file mode 100644
index 00000000..867a504c
--- /dev/null
+++ b/src/math/riscv64/sqrt.c
@@ -0,0 +1,15 @@
+#include <math.h>
+
+#if __riscv_flen >= 64
+
+double sqrt(double x)
+{
+ __asm__ ("fsqrt.d %0, %1" : "=f"(x) : "f"(x));
+ return x;
+}
+
+#else
+
+#include "../sqrt.c"
+
+#endif