diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-18 23:50:54 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-18 23:50:54 -0400 |
commit | 495a52ae7bb581aac2942d7cb095cca2ff53ca3c (patch) | |
tree | 1f3ddd19394ebff4493ab45e009c6fcc27fdad28 /src/math/i386/logl.s | |
parent | aa1b4dff45788f8205e32ea01da243fe09568aa8 (diff) | |
download | musl-495a52ae7bb581aac2942d7cb095cca2ff53ca3c.tar.gz musl-495a52ae7bb581aac2942d7cb095cca2ff53ca3c.tar.xz musl-495a52ae7bb581aac2942d7cb095cca2ff53ca3c.zip |
asm for log functions
Diffstat (limited to 'src/math/i386/logl.s')
-rw-r--r-- | src/math/i386/logl.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/math/i386/logl.s b/src/math/i386/logl.s new file mode 100644 index 00000000..d4e3339b --- /dev/null +++ b/src/math/i386/logl.s @@ -0,0 +1,7 @@ +.global logl +.type logl,@function +logl: + fldln2 + fldt 4(%esp) + fyl2x + ret |