Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
math
/
arm
/
fma.c
blob: 2a9b8efa777fa7e5a38d811cf3c8958b569f7857 [
file
] [
log
] [
blame
]
#include
<math.h>
#if __ARM_FEATURE_FMA && __ARM_FP&8 && !__SOFTFP__
double
fma
(
double
x
,
double
y
,
double
z
)
{
__asm__
(
"vfma.f64 %P0, %P1, %P2"
:
"+w"
(
z
)
:
"w"
(
x
),
"w"
(
y
));
return
z
;
}
#else
#include
"../fma.c"
#endif