summaryrefslogtreecommitdiff
path: root/lib/libm/aarch64/nearbyint.c
blob: 6a18603979ae48010f5634e92572a161b169eb02 (plain)
1
2
3
4
5
6
7
#include <math.h>

double nearbyint(double x)
{
	__asm__("frinti %d0, %d1" : "=w"(x) : "w"(x));
	return x;
}