1 /* $NetBSD: fpsetsticky.c,v 1.7 2013/10/28 01:06:36 mrg Exp $ */
4 * Written by J.T. Conklin, Apr 10, 1995
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpsetsticky.c,v 1.7 2013/10/28 01:06:36 mrg Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
15 #include <sys/types.h>
19 __weak_alias(fpsetsticky
,_fpsetsticky
)
22 #ifdef EXCEPTIONS_WITH_SOFTFLOAT
23 extern fp_except _softfloat_float_exception_flags
;
27 fpsetsticky(fp_except sticky
)
32 __asm("st %%fsr,%0" : "=m" (*&old
));
36 new |= ((sticky
& 0x1f) << 5);
38 __asm("ld %0,%%fsr" : : "m" (*&new));
40 old
= ((uint32_t)old
>> 5) & 0x1f;
42 #ifdef EXCEPTIONS_WITH_SOFTFLOAT
43 old
|= _softfloat_float_exception_flags
;
44 _softfloat_float_exception_flags
= sticky
;