From 63893d3ff1f9383ba3ce63a19b7de74ace319d77 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 16 Aug 2013 17:32:30 -0400 Subject: some initial math asm for armhf (fabs[f] and sqrt[f]) --- src/math/armhf/sqrt.s | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/math/armhf/sqrt.s (limited to 'src/math/armhf/sqrt.s') diff --git a/src/math/armhf/sqrt.s b/src/math/armhf/sqrt.s new file mode 100644 index 00000000..99fe64b9 --- /dev/null +++ b/src/math/armhf/sqrt.s @@ -0,0 +1,6 @@ +.text +.global sqrt +.type sqrt,%function +sqrt: + vsqrt.f64 d0, d0 + bx lr -- cgit v1.2.1