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

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