Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
math
/
s390x
/
fma.c
blob: 86da0e49584f792f67baf2b5fcf1a0879ceb551d [
file
] [
log
] [
blame
]
#include
<math.h>
double
fma
(
double
x
,
double
y
,
double
z
)
{
__asm__
(
"madbr %0, %1, %2"
:
"+f"
(
z
)
:
"f"
(
x
),
"f"
(
y
));
return
z
;
}