/* * Written by J.T. Conklin, Apr 10, 1995 * Public domain. */ #if defined(LIBC_SCCS) && !defined(lint) static char rcsid[] = "$OpenBSD: fpsetsticky.c,v 1.2 1996/08/19 08:17:35 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include fp_except fpsetsticky(sticky) fp_except sticky; { fp_except old; fp_except new; __asm__("st %%fsr,%0" : "=m" (*&old)); new = old; new &= ~(0x1f << 5); new |= ((sticky & 0x1f) << 5); __asm__("ld %0,%%fsr" : : "m" (*&new)); return (old >> 5) & 0x1f; }