/* $NetBSD: fpgetmask.c,v 1.5 2012/03/17 21:35:06 martin Exp $ */ /* * Written by J.T. Conklin, Apr 10, 1995 * Public domain. */ #include #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: fpgetmask.c,v 1.5 2012/03/17 21:35:06 martin Exp $"); #endif /* LIBC_SCCS and not lint */ #include "namespace.h" #include #include #ifdef __weak_alias __weak_alias(fpgetmask,_fpgetmask) #endif fp_except fpgetmask() { uint32_t x; __asm("st %%fsr,%0" : "=m" (*&x)); return (x >> 23) & 0x1f; }