Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
math
/
powerpc64
/
fma.c
blob: 5aebd1ac3f90cea4ddd340fd4aafbfac6d933ce5 [
file
] [
log
] [
blame
]
#include
<math.h>
double
fma
(
double
x
,
double
y
,
double
z
)
{
__asm__
(
"fmadd %0, %1, %2, %3"
:
"=d"
(
x
)
:
"d"
(
x
),
"d"
(
y
),
"d"
(
z
));
return
x
;
}