Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
src
/
math
/
aarch64
/
floor.c
blob: 50ffdb281b6103df5e44b4bc2f94a0861e502bc0 [
file
]
#include
<math.h>
double
floor
(
double
x
)
{
__asm__
(
"frintm %d0, %d1"
:
"=w"
(
x
)
:
"w"
(
x
));
return
x
;
}