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