Sign in
cobalt
/
cobalt
/
788710a0d7b1b8d8e2340dd5fad5e8783a239862
/
.
/
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