musl-tcc/src/math/aarch64/sqrt.c

8 lines
104 B
C

#include <math.h>
double sqrt(double x)
{
__asm__ ("fsqrt %d0, %d1" : "=w"(x) : "w"(x));
return x;
}