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

float rintf(float x)
{
	__asm__("frintx %s0, %s1" : "=w"(x) : "w"(x));
	return x;
}