1 /* $NetBSD: fpgetsticky.c,v 1.7 2012/06/24 15:26:02 christos Exp $ */
4 * Written by J.T. Conklin, Apr 10, 1995
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpgetsticky.c,v 1.7 2012/06/24 15:26:02 christos Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
15 #include <sys/types.h>
19 __weak_alias(fpgetsticky
,_fpgetsticky
)
22 #ifdef EXCEPTIONS_WITH_SOFTFLOAT
23 extern fp_except _softfloat_float_exception_flags
;
32 __asm("st %%fsr,%0" : "=m" (*&x
));
33 res
= (x
>> 5) & 0x1f;
35 #ifdef EXCEPTIONS_WITH_SOFTFLOAT
36 res
|= _softfloat_float_exception_flags
;