xref: /aosp_15_r20/external/musl/src/math/powerpc64/lrint.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <math.h>
2 
3 #ifdef _ARCH_PWR5X
4 
lrint(double x)5 long lrint(double x)
6 {
7 	long n;
8 	__asm__ ("fctid %0, %1" : "=d"(n) : "d"(x));
9 	return n;
10 }
11 
12 #else
13 
14 #include "../lrint.c"
15 
16 #endif
17