Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
math
/
aarch64
/
fma.c
blob: 2450ea7e196ffd7c8b7a63022c7b325652294c02 [
file
] [
log
] [
blame
]
#include
<math.h>
double
fma
(
double
x
,
double
y
,
double
z
)
{
__asm__
(
"fmadd %d0, %d1, %d2, %d3"
:
"=w"
(
x
)
:
"w"
(
x
),
"w"
(
y
),
"w"
(
z
));
return
x
;
}