Expand PMF_FN_* macros.
[netbsd-mini2440.git] / lib / libc / arch / i386 / gen / fpsetsticky.S
blob2a44fb47e6de2cdc10fe2127bb4669934a9311d0
1 /*      $NetBSD: fpsetsticky.S,v 1.5 1998/01/09 03:45:06 perry Exp $    */
3 /*
4  * Written by Charles M. Hannum, Apr 9, 1995
5  * Public domain.
6  */
8 #include <machine/asm.h>
10 #ifdef WEAK_ALIAS
11 WEAK_ALIAS(fpsetsticky, _fpsetsticky)
12 ENTRY(_fpsetsticky)
13 #else
14 ENTRY(fpsetsticky)
15 #endif
16         subl $28,%esp
18         fnstenv (%esp)
19         movl 4(%esp),%eax
20         movl %eax,%edx
22         andl $63,%eax
24         subl %eax,%edx
25         movl 32(%esp),%ecx
26         andl $63,%ecx
27         addl %ecx,%edx
28         movl %edx,4(%esp)
29         fldenv (%esp)
31         addl $28,%esp
32         ret