summaryrefslogtreecommitdiff
path: root/src/math/i386/modfl.s
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-19 05:56:41 -0400
committerRich Felker <dalias@aerifal.cx>2012-03-19 05:56:41 -0400
commit1bf4dad32727ee17e6067caac6600ca0c5ab9f2d (patch)
tree039122cbca36ce1b6f7ee17343694df678880d5f /src/math/i386/modfl.s
parent0b70a1e9a9651d21242c5b6da327ecab0f1a38a6 (diff)
downloadmusl-1bf4dad32727ee17e6067caac6600ca0c5ab9f2d.tar.gz
asm for modf functions
Diffstat (limited to 'src/math/i386/modfl.s')
-rw-r--r--src/math/i386/modfl.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/math/i386/modfl.s b/src/math/i386/modfl.s
new file mode 100644
index 00000000..f9380083
--- /dev/null
+++ b/src/math/i386/modfl.s
@@ -0,0 +1,15 @@
+.global modfl
+.type modfl,@function
+modfl:
+ mov 16(%esp),%eax
+ fldt 4(%esp)
+ fld1
+ fld %st(1)
+1: fprem
+ fstsw %ax
+ sahf
+ jp 1b
+ fstp %st(1)
+ fsubr %st(1)
+ fstpt (%eax)
+ ret