xref: /aosp_15_r20/external/musl/src/math/aarch64/fmin.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <math.h>
2 
fmin(double x,double y)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