Sign in
cobalt
/
cobalt
/
9708d320f5c570ac1ada07d0e0136706ac0a5c29
/
.
/
third_party
/
musl
/
src
/
math
/
powerpc64
/
lrint.c
blob: 4e4b2e00a9f9b69e0522433bacd50b47e7ae07e9 [
file
] [
log
] [
blame
]
#include
<math.h>
#ifdef
_ARCH_PWR5X
long
lrint
(
double
x
)
{
long
n
;
__asm__
(
"fctid %0, %1"
:
"=d"
(
n
)
:
"d"
(
x
));
return
n
;
}
#else
#include
"../lrint.c"
#endif