Remove building with NOCRYPTO option
[minix.git] / lib / libc / arch / hppa / gen / flt_rounds.c
blob179fb60b0af849effe0f5fe4436bb3cdcf3466fb
1 /* $NetBSD: flt_rounds.c,v 1.5 2012/03/23 09:34:09 skrll Exp $ */
3 /* $OpenBSD: flt_rounds.c,v 1.3 2002/10/21 18:41:05 mickey Exp $ */
5 /*
6 * Written by Miodrag Vallat. Public domain.
7 */
9 #include <sys/cdefs.h>
10 #if defined(LIBC_SCCS) && !defined(lint)
11 __RCSID("$NetBSD: flt_rounds.c,v 1.5 2012/03/23 09:34:09 skrll Exp $");
12 #endif /* LIBC_SCCS and not lint */
14 #include <sys/types.h>
15 #include <machine/float.h>
17 static const int map[] = {
18 1, /* round to nearest */
19 0, /* round to zero */
20 2, /* round to positive infinity */
21 3 /* round to negative infinity */
24 int
25 __flt_rounds(void)
27 uint64_t fpsr;
29 __asm volatile("fstd %%fr0,0(%1)" : "=m" (fpsr) : "r" (&fpsr));
30 return map[(unsigned int)(fpsr >> 41) & 0x03];