blob: b47875d6695b999f9f6840c248cf378688184ae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $OpenBSD: fpgetmask.c,v 1.1 2001/08/29 01:34:56 art Exp $ */
/*
* Written by J.T. Conklin, Apr 10, 1995
* Public domain.
*/
#include <ieeefp.h>
fp_except
fpgetmask()
{
int x;
__asm__("st %%fsr,%0" : "=m" (*&x));
return (x >> 23) & 0x1f;
}
|