blob: 16699598ac65052379325c70afecce90f7d49409 [file] [log] [blame]
#include <math.h>
long long llroundf(float x)
{
long long n;
__asm__ ("fcvtas %x0, %s1" : "=r"(n) : "w"(x));
return n;
}