tools/llvm: Do not build with symbols
[minix3.git] / lib / libc / arch / sparc / gen / fpgetround.c
blobeafd21a248e940e16b55d2fcf10c4ebda2cb0242
1 /* $NetBSD: fpgetround.c,v 1.6 2012/03/21 00:38:34 christos Exp $ */
3 /*
4 * Written by J.T. Conklin, Apr 10, 1995
5 * Public domain.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpgetround.c,v 1.6 2012/03/21 00:38:34 christos Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
15 #include <ieeefp.h>
17 #ifdef __weak_alias
18 __weak_alias(fpgetround,_fpgetround)
19 #endif
21 fp_rnd
22 fpgetround(void)
24 unsigned int x;
26 __asm("st %%fsr,%0" : "=m" (*&x));
27 return (x >> 30) & 0x03;