diff options
Diffstat (limited to 'libc-top-half/musl/src/math/riscv64/sqrtf.c')
-rw-r--r-- | libc-top-half/musl/src/math/riscv64/sqrtf.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/riscv64/sqrtf.c b/libc-top-half/musl/src/math/riscv64/sqrtf.c new file mode 100644 index 0000000..610c2cf --- /dev/null +++ b/libc-top-half/musl/src/math/riscv64/sqrtf.c @@ -0,0 +1,15 @@ +#include <math.h> + +#if __riscv_flen >= 32 + +float sqrtf(float x) +{ + __asm__ ("fsqrt.s %0, %1" : "=f"(x) : "f"(x)); + return x; +} + +#else + +#include "../sqrtf.c" + +#endif |