xref: /netbsd-src/lib/libc/arch/sparc64/gen/fpgetround.c (revision 3d365e7447a96c9a8d60ba350e9a77732c5aede8)
1 /*	$NetBSD: fpgetround.c,v 1.6 2012/06/24 15:26:02 christos Exp $	*/
2 
3 /*
4  * Written by J.T. Conklin, Apr 10, 1995
5  * Public domain.
6  */
7 
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpgetround.c,v 1.6 2012/06/24 15:26:02 christos Exp $");
11 #endif /* LIBC_SCCS and not lint */
12 
13 #include "namespace.h"
14 
15 #include <sys/types.h>
16 #include <ieeefp.h>
17 
18 #ifdef __weak_alias
__weak_alias(fpgetround,_fpgetround)19 __weak_alias(fpgetround,_fpgetround)
20 #endif
21 
22 fp_rnd
23 fpgetround(void)
24 {
25 	uint32_t x;
26 
27 	__asm("st %%fsr,%0" : "=m" (*&x));
28 	return (x >> 30) & 0x03;
29 }
30