Sign in
cobalt
/
cobalt
/
f9bc0139df6e6eb149345ab9b6ffcc40603fc09f
/
.
/
third_party
/
musl
/
src
/
math
/
powerpc64
/
fmaf.c
blob: c678fefecd0e357f877d1eb6fa618effd6a3ad35 [
file
] [
log
] [
blame
]
#include
<math.h>
float
fmaf
(
float
x
,
float
y
,
float
z
)
{
__asm__
(
"fmadds %0, %1, %2, %3"
:
"=f"
(
x
)
:
"f"
(
x
),
"f"
(
y
),
"f"
(
z
));
return
x
;
}