Remove building with NOCRYPTO option
[minix3.git] / lib / libc / arch / sparc / gen / fpsetmask.c
blob250761e48d92bd625b8048e5342a9d75a8115495
1 /* $NetBSD: fpsetmask.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: fpsetmask.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(fpsetmask,_fpsetmask)
19 #endif
21 fp_except
22 fpsetmask(fp_except mask)
24 fp_except old;
25 fp_except new;
27 __asm("st %%fsr,%0" : "=m" (*&old));
29 new = old;
30 new &= ~(0x1f << 23);
31 new |= ((mask & 0x1f) << 23);
33 __asm("ld %0,%%fsr" : : "m" (*&new));
35 return (old >> 23) & 0x1f;