Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
math
/
powerpc64
/
lround.c
blob: ee4d1143c33de9b15f09ba3d79b5704a4187d1a4 [
file
] [
log
] [
blame
]
#include
<math.h>
#ifdef
__VSX__
long
lround
(
double
x
)
{
long
n
;
__asm__
(
"xsrdpi %1, %1\n"
"fctid %0, %1\n"
:
"=d"
(
n
),
"+d"
(
x
));
return
n
;
}
#else
#include
"../lround.c"
#endif