tools/llvm: Do not build with symbols
[minix3.git] / lib / libc / arch / x86_64 / gen / fpgetprec.S
blobd3728fa3bc9b7d6d6e381b641652605120b443a0
1 /*      $NetBSD: fpgetprec.S,v 1.1 2011/03/26 19:51:42 christos Exp $   */
3 /*
4  * Written by J.T. Conklin, Apr 4, 1995
5  * Public domain.
6  */
8 #include <machine/asm.h>
11  * XXX store only x87 state. If an application only uses the fp*
12  * interface, this should be in sync with the SSE mxcsr register.
13  */
15 #ifdef WEAK_ALIAS
16 WEAK_ALIAS(fpgetprec, _fpgetprec)
17 ENTRY(_fpgetprec)
18 #else
19 ENTRY(fpgetprec)
20 #endif
21         fnstcw -4(%rsp)
22         movl -4(%rsp),%eax
23         rorl $8,%eax
24         andl $3,%eax
25         ret