xref: /aosp_15_r20/external/musl/src/math/powerpc/fmaf.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <math.h>
2 
3 #if defined(_SOFT_FLOAT) || defined(__NO_FPRS__)
4 
5 #include "../fmaf.c"
6 
7 #else
8 
fmaf(float x,float y,float z)9 float fmaf(float x, float y, float z)
10 {
11 	__asm__("fmadds %0, %1, %2, %3" : "=f"(x) : "f"(x), "f"(y), "f"(z));
12 	return x;
13 }
14 
15 #endif
16