Initial import from FreeBSD RELENG_4:
[dragonfly.git] / lib / libcr / mips / gen / flt_rounds.c
1 /*
2  * Written by J.T. Conklin, Apr 11, 1995
3  * Public domain.
4  */
5
6 #include <sys/types.h>
7 #include <machine/float.h>
8
9 #if defined(LIBC_SCCS) && !defined(lint)
10 static char rcsid[] = "$OpenBSD: flt_rounds.c,v 1.3 1997/08/01 21:36:28 deraadt Exp $";
11 #endif /* LIBC_SCCS and not lint */
12
13 static const int map[] = {
14         1,      /* round to nearest */
15         0,      /* round to zero */
16         2,      /* round to positive infinity */
17         3       /* round to negative infinity */
18 };
19
20 int
21 __flt_rounds()
22 {
23         int x;
24
25         __asm__("cfc1 %0,$31" : "=r" (x));
26         return map[x & 0x03];
27 }