xref: /aosp_15_r20/external/musl/src/math/riscv32/fma.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <math.h>
2 
3 #if __riscv_flen >= 64
4 
fma(double x,double y,double z)5 double fma(double x, double y, double z)
6 {
7 	__asm__ ("fmadd.d %0, %1, %2, %3" : "=f"(x) : "f"(x), "f"(y), "f"(z));
8 	return x;
9 }
10 
11 #else
12 
13 #include "../fma.c"
14 
15 #endif
16