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