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

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