blob: 25b8823163c6c583892be8951210968ed33ebf6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// an implementation of sqrtf for Thumb using hardware VFP instructions
#include <math.h>
float sqrtf(float x) {
__asm__ volatile (
"vsqrt.f32 %[r], %[x]\n"
: [r] "=t" (x)
: [x] "t" (x));
return x;
}
|