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/log10l.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/log10l.s')
-rw-r--r-- | src/math/i386/log10l.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/math/i386/log10l.s b/src/math/i386/log10l.s new file mode 100644 index 00000000..aaa44f2f --- /dev/null +++ b/src/math/i386/log10l.s @@ -0,0 +1,7 @@ +.global log10l +.type log10l,@function +log10l: + fldlg2 + fldt 4(%esp) + fyl2x + ret |