summaryrefslogtreecommitdiff
path: root/src/math/i386/fmod.s
diff options
context:
space:
mode:
authorAlexander Monakov <amonakov@ispras.ru>2020-01-15 18:42:46 +0300
committerRich Felker <dalias@aerifal.cx>2020-03-24 16:31:36 -0400
commitbc87299ce72a52f4debf9fc19d859abe34dbdf43 (patch)
tree95763fe2cf648fe78c7cf2ce273d86b589050152 /src/math/i386/fmod.s
parentb173e4262f65800ea488b4494125284779a61547 (diff)
downloadmusl-bc87299ce72a52f4debf9fc19d859abe34dbdf43.tar.gz
math: move x87-family fmod functions to C with inline asm
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