summaryrefslogtreecommitdiff
path: root/src/math/aarch64/fmin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/aarch64/fmin.c')
-rw-r--r--src/math/aarch64/fmin.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/math/aarch64/fmin.c b/src/math/aarch64/fmin.c
new file mode 100644
index 00000000..f1e99808
--- /dev/null
+++ b/src/math/aarch64/fmin.c
@@ -0,0 +1,7 @@
+#include <math.h>
+
+double fmin(double x, double y)
+{
+ __asm__ ("fminnm %d0, %d1, %d2" : "=w"(x) : "w"(x), "w"(y));
+ return x;
+}