fix potentially wrong-sign zero in cproj functions at infinity
[musl] / src / math / s390x / fma.c
1 #include <math.h>
2
3 double fma(double x, double y, double z)
4 {
5         __asm__ ("madbr %0, %1, %2" : "+f"(z) : "f"(x), "f"(y));
6         return z;
7 }