6bbdbfdc ^
1 2 3 4 5 6 7 8
#include <math.h> long lrint(double x) { long r; __asm__ ("cvtsd2si %1, %0" : "=r"(r) : "x"(x)); return r; }