Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android14-mainline-appsearch-release
/
.
/
src
/
math
/
aarch64
/
fmax.c
blob: 86dcb3b4591c5e1fe78bdadb1fbe6ecaecf85370 [
file
] [
log
] [
blame
] [
edit
]
#include
<math.h>
double
fmax
(
double
x
,
double
y
)
{
__asm__
(
"fmaxnm %d0, %d1, %d2"
:
"=w"
(
x
)
:
"w"
(
x
),
"w"
(
y
));
return
x
;
}