From bc87299ce72a52f4debf9fc19d859abe34dbdf43 Mon Sep 17 00:00:00 2001 From: Alexander Monakov Date: Wed, 15 Jan 2020 18:42:46 +0300 Subject: math: move x87-family fmod functions to C with inline asm --- src/math/i386/fmod.s | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/math/i386/fmod.s (limited to 'src/math/i386/fmod.s') 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 -- cgit v1.2.1