From b173e4262f65800ea488b4494125284779a61547 Mon Sep 17 00:00:00 2001 From: Alexander Monakov Date: Tue, 14 Jan 2020 23:36:44 +0300 Subject: math: move x87-family remainder functions to C with inline asm --- src/math/i386/remainderl.s | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/math/i386/remainderl.s (limited to 'src/math/i386/remainderl.s') diff --git a/src/math/i386/remainderl.s b/src/math/i386/remainderl.s deleted file mode 100644 index b41518ed..00000000 --- a/src/math/i386/remainderl.s +++ /dev/null @@ -1,11 +0,0 @@ -.global remainderl -.type remainderl,@function -remainderl: - fldt 16(%esp) - fldt 4(%esp) -1: fprem1 - fnstsw %ax - sahf - jp 1b - fstp %st(1) - ret -- cgit v1.2.1