NetBSD/lib/libc/arch/mips/gen/fpgetmask.c

16 lines
184 B
C

/*
* Written by J.T. Conklin, Apr 11, 1995
* Public domain.
*/
#include <ieeefp.h>
fp_except
fpgetmask()
{
int x;
__asm__("cfc1 %0,$31" : "=r" (x));
return (x >> 7) & 0x1f;
}