tools/llvm: Do not build with symbols
[minix3.git] / lib / libc / arch / i386 / gen / fpgetsticky.S
blob5f54f94a5676b3ee6d7490b2ccbaec9bb3511b33
1 /*      $NetBSD: fpgetsticky.S,v 1.6 2002/01/13 21:45:43 thorpej 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(fpgetsticky, _fpgetsticky)
12 ENTRY(_fpgetsticky)
13 #else
14 ENTRY(fpgetsticky)
15 #endif
16         subl $4,%esp
17         fnstsw (%esp)
18         movl (%esp),%eax
19         andl $63,%eax
20         addl $4,%esp
21         ret