diff options
author | nsz <nsz@port70.net> | 2012-03-19 10:20:24 +0100 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-03-19 10:20:24 +0100 |
commit | 9322344fa4c47a64361a81eda1b1930cd4341626 (patch) | |
tree | 94a641e60aef228d799035dc7c4a889ff39e4b3a /src/math/i386/scalbnl.s | |
parent | 0627e58af8514967372a8ff703e7a86c2571acc2 (diff) | |
parent | 58ff9e8eaf99f2294232be860daa2ca6f3674faf (diff) | |
download | musl-9322344fa4c47a64361a81eda1b1930cd4341626.tar.gz musl-9322344fa4c47a64361a81eda1b1930cd4341626.tar.bz2 musl-9322344fa4c47a64361a81eda1b1930cd4341626.tar.xz musl-9322344fa4c47a64361a81eda1b1930cd4341626.zip |
Merge branch 'master' of git://git.etalabs.net/musl
Diffstat (limited to 'src/math/i386/scalbnl.s')
-rw-r--r-- | src/math/i386/scalbnl.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/math/i386/scalbnl.s b/src/math/i386/scalbnl.s new file mode 100644 index 00000000..224b1bef --- /dev/null +++ b/src/math/i386/scalbnl.s @@ -0,0 +1,18 @@ +.global ldexpl +.type ldexpl,@function +ldexpl: + nop + +.global scalblnl +.type scalblnl,@function +scalblnl: + nop + +.global scalbnl +.type scalbnl,@function +scalbnl: + fildl 16(%esp) + fldt 4(%esp) + fscale + fstp %st(1) + ret |