Remove building with NOCRYPTO option
[minix3.git] / lib / libc / arch / x86_64 / gen / fpgetround.S
blobd01d3390c0eeeaaa8dc6b11a46df3b85124332e7
1 /*      $NetBSD: fpgetround.S,v 1.5 2014/05/22 15:01:56 uebayasi Exp $  */
3 /*
4  * Written by J.T. Conklin, Apr 4, 1995
5  * Public domain.
6  */
8 #include <machine/asm.h>
11  * XXX load 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(fpgetround, _fpgetround)
17 ENTRY(_fpgetround)
18 #else
19 ENTRY(fpgetround)
20 #endif
21         fnstcw -4(%rsp)
22         movl -4(%rsp), %eax
23         andl $0x00000c00, %eax
24         ret
25 #ifdef WEAK_ALIAS
26 END(_fpgetround)
27 #else
28 END(fpgetround)
29 #endif