xref: /haiku/src/system/libroot/posix/musl/math/arm64/fmin.c (revision a127b88ecbfab58f64944c98aa47722a18e363b2)
1 #include <math.h>
2 
3 double fmin(double x, double y)
4 {
5 	__asm__ ("fminnm %d0, %d1, %d2" : "=w"(x) : "w"(x), "w"(y));
6 	return x;
7 }
8