about summary refs log tree commit diff
path: root/src/math/i386/fmodf.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/i386/fmodf.s')
-rw-r--r--src/math/i386/fmodf.s11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/math/i386/fmodf.s b/src/math/i386/fmodf.s
deleted file mode 100644
index e04e2a56..00000000
--- a/src/math/i386/fmodf.s
+++ /dev/null
@@ -1,11 +0,0 @@
-.global fmodf
-.type fmodf,@function
-fmodf:
-	flds 8(%esp)
-	flds 4(%esp)
-1:	fprem
-	fnstsw %ax
-	sahf
-	jp 1b
-	fstp %st(1)
-	ret