diff options
author | Nicholas J. Kain <njkain@gmail.com> | 2011-02-15 07:32:09 -0500 |
---|---|---|
committer | Nicholas J. Kain <njkain@gmail.com> | 2011-02-15 07:32:09 -0500 |
commit | 1e12632591ab98a6ea3af8680716c28282552981 (patch) | |
tree | 5b79bd9a0b950d6ab414fef8cbb5dfcd1a6d2e83 /src/math/x86_64/e_sqrtf.s | |
parent | c2afb747b0296f23cd1903e82ccbdee3fc2978fd (diff) | |
download | musl-1e12632591ab98a6ea3af8680716c28282552981.tar.gz musl-1e12632591ab98a6ea3af8680716c28282552981.tar.xz musl-1e12632591ab98a6ea3af8680716c28282552981.zip |
Port musl to x86-64. One giant commit!
Diffstat (limited to 'src/math/x86_64/e_sqrtf.s')
-rw-r--r-- | src/math/x86_64/e_sqrtf.s | 3 |
1 files changed, 3 insertions, 0 deletions
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 |