summaryrefslogtreecommitdiff
path: root/src/math/mips/sqrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/mips/sqrt.c')
-rw-r--r--src/math/mips/sqrt.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/math/mips/sqrt.c b/src/math/mips/sqrt.c
new file mode 100644
index 00000000..595c9dbc
--- /dev/null
+++ b/src/math/mips/sqrt.c
@@ -0,0 +1,16 @@
+#if !defined(__mips_soft_float) && __mips >= 3
+
+#include <math.h>
+
+double sqrt(double x)
+{
+ double r;
+ __asm__("sqrt.d %0,%1" : "=f"(r) : "f"(x));
+ return r;
+}
+
+#else
+
+#include "../sqrt.c"
+
+#endif