about summary refs log tree commit diff
path: root/src/math/i386/modff.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/i386/modff.s')
-rw-r--r--src/math/i386/modff.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/math/i386/modff.s b/src/math/i386/modff.s
new file mode 100644
index 00000000..d29b4b60
--- /dev/null
+++ b/src/math/i386/modff.s
@@ -0,0 +1,15 @@
+.global modff
+.type modff,@function
+modff:
+	mov 8(%esp),%eax
+	flds 4(%esp)
+	fld1
+	fld %st(1)
+1:	fprem
+	fstsw %ax
+	sahf
+	jp 1b
+	fstp %st(1)
+	fsubr %st(1)
+	fstps (%eax)
+	ret