Sweep-fix man page section order to match mdoc(7), part 5/5.
[dragonfly.git] / lib / msun / i387 / e_remainder.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 #if 0
11 RCSID("$NetBSD: e_remainder.S,v 1.6 2001/06/25 16:47:05 fvdl Exp $")
12 #endif
13 RCSID("$DragonFly: src/lib/msun/i387/Attic/e_remainder.S,v 1.3 2004/12/29 11:40:17 asmodai Exp $")
14
15 ENTRY(__ieee754_remainder)
16         XMM_TWO_ARG_DOUBLE_PROLOGUE
17         fldl    ARG_DOUBLE_TWO
18         fldl    ARG_DOUBLE_ONE
19 1:      fprem1
20         fstsw   %ax
21         btw     $10,%ax
22         jc      1b
23         fstp    %st(1)
24         XMM_DOUBLE_EPILOGUE
25         ret