diff options
Diffstat (limited to 'src/math/armhf/sqrtf.s')
-rw-r--r-- | src/math/armhf/sqrtf.s | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/armhf/sqrtf.s b/src/math/armhf/sqrtf.s new file mode 100644 index 00000000..9ea519f6 --- /dev/null +++ b/src/math/armhf/sqrtf.s @@ -0,0 +1,6 @@ +.text +.global sqrtf +.type sqrtf,%function +sqrtf: + vsqrt.f32 s0, s0 + bx lr |