summaryrefslogtreecommitdiff
path: root/src/math/i386/fmod.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/i386/fmod.s')
-rw-r--r--src/math/i386/fmod.s11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/math/i386/fmod.s b/src/math/i386/fmod.s
deleted file mode 100644
index 2113b3c5..00000000
--- a/src/math/i386/fmod.s
+++ /dev/null
@@ -1,11 +0,0 @@
-.global fmod
-.type fmod,@function
-fmod:
- fldl 12(%esp)
- fldl 4(%esp)
-1: fprem
- fnstsw %ax
- sahf
- jp 1b
- fstp %st(1)
- ret