summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/math/powerpc64/fmin.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/math/powerpc64/fmin.c')
-rw-r--r--libc-top-half/musl/src/math/powerpc64/fmin.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/powerpc64/fmin.c b/libc-top-half/musl/src/math/powerpc64/fmin.c
new file mode 100644
index 0000000..adf71ba
--- /dev/null
+++ b/libc-top-half/musl/src/math/powerpc64/fmin.c
@@ -0,0 +1,15 @@
+#include <math.h>
+
+#ifdef __VSX__
+
+double fmin(double x, double y)
+{
+ __asm__ ("xsmindp %x0, %x1, %x2" : "=ws"(x) : "ws"(x), "ws"(y));
+ return x;
+}
+
+#else
+
+#include "../fmin.c"
+
+#endif