Expand PMF_FN_* macros.
[netbsd-mini2440.git] / lib / libc / arch / i386 / gen / fpgetmask.S
blob790f2cea241376deac8130293ea87c9ff23e83c5
1 /*      $NetBSD: fpgetmask.S,v 1.3 1998/01/09 03:45:03 perry Exp $      */
3 /*
4  * Written by J.T. Conklin, Apr 4, 1995
5  * Public domain.
6  */
8 #include <machine/asm.h>
10 #ifdef WEAK_ALIAS
11 WEAK_ALIAS(fpgetmask, _fpgetmask)
12 ENTRY(_fpgetmask)
13 #else
14 ENTRY(fpgetmask)
15 #endif
16         subl $4,%esp
17         fnstcw (%esp)
18         movl (%esp),%eax
19         notl %eax
20         andl $63,%eax
21         addl $4,%esp
22         ret