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

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