diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-18 17:09:34 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-18 17:09:34 -0400 |
commit | b935147761d1770bb115f09f8c28ddb4d36e1236 (patch) | |
tree | b96d46d662c717fffb0f0364e3cd07f009a06af1 /src/math/i386/remainderf.s | |
parent | 8d9e948652eb8381f1f376cbd0c9bc5e2947d150 (diff) | |
download | musl-b935147761d1770bb115f09f8c28ddb4d36e1236.tar.gz musl-b935147761d1770bb115f09f8c28ddb4d36e1236.tar.xz musl-b935147761d1770bb115f09f8c28ddb4d36e1236.zip |
assembly optimizations for fmod/remainder functions
Diffstat (limited to 'src/math/i386/remainderf.s')
-rw-r--r-- | src/math/i386/remainderf.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/math/i386/remainderf.s b/src/math/i386/remainderf.s new file mode 100644 index 00000000..5b5fc235 --- /dev/null +++ b/src/math/i386/remainderf.s @@ -0,0 +1,11 @@ +.global remainderf +.type remainderf,@function +remainderf: + flds 8(%esp) + flds 4(%esp) +1: fprem1 + fstsw %ax + sahf + jp 1b + fstp %st(1) + ret |