wx(4) is gone. Also remove the module itself.
[dragonfly.git] / lib / msun / i387 / e_fmod.S
1 /*
2  * Written by J.T. Conklin <jtc@NetBSD.org>.
3  * Public domain.
4  */
5
6 #include <machine/asm.h>
7
8 #include "abi.h"
9
10
11 #if 0
12 RCSID("$NetBSD: e_fmod.S,v 1.6 2001/06/25 16:44:34 fvdl Exp $")
13 #endif
14 RCSID("$DragonFly: src/lib/msun/i387/Attic/e_fmod.S,v 1.3 2004/12/29 11:40:17 asmodai Exp $")
15
16 ENTRY(__ieee754_fmod)
17         XMM_TWO_ARG_DOUBLE_PROLOGUE
18         fldl    ARG_DOUBLE_TWO
19         fldl    ARG_DOUBLE_ONE
20 1:      fprem
21         fstsw   %ax
22         btw     $10,%ax
23         jc      1b
24         fstp    %st(1)
25         XMM_DOUBLE_EPILOGUE
26         ret