summaryrefslogtreecommitdiff
path: root/src/math
diff options
context:
space:
mode:
authorNicholas J. Kain <njkain@gmail.com>2011-02-15 07:32:09 -0500
committerNicholas J. Kain <njkain@gmail.com>2011-02-15 07:32:09 -0500
commit1e12632591ab98a6ea3af8680716c28282552981 (patch)
tree5b79bd9a0b950d6ab414fef8cbb5dfcd1a6d2e83 /src/math
parentc2afb747b0296f23cd1903e82ccbdee3fc2978fd (diff)
downloadmusl-1e12632591ab98a6ea3af8680716c28282552981.tar.gz
Port musl to x86-64. One giant commit!
Diffstat (limited to 'src/math')
-rw-r--r--src/math/x86_64/e_sqrt.s3
-rw-r--r--src/math/x86_64/e_sqrtf.s3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/math/x86_64/e_sqrt.s b/src/math/x86_64/e_sqrt.s
new file mode 100644
index 00000000..64de7d6a
--- /dev/null
+++ b/src/math/x86_64/e_sqrt.s
@@ -0,0 +1,3 @@
+.global sqrt
+sqrt: sqrtsd %xmm0, %xmm0
+ ret
diff --git a/src/math/x86_64/e_sqrtf.s b/src/math/x86_64/e_sqrtf.s
new file mode 100644
index 00000000..2c77076b
--- /dev/null
+++ b/src/math/x86_64/e_sqrtf.s
@@ -0,0 +1,3 @@
+.global sqrtf
+sqrtf: sqrtss %xmm0, %xmm0
+ ret