forked from KolibriOS/kolibrios
2336060a0c
git-svn-id: svn://kolibrios.org@1906 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
190 B
C
11 lines
190 B
C
#include <math.h>
|
|
int __fpclassifyf (float _x){
|
|
unsigned short sw;
|
|
__asm__ (
|
|
"fxam; fstsw %%ax;"
|
|
: "=a" (sw)
|
|
: "t" (_x)
|
|
);
|
|
return sw & (FP_NAN | FP_NORMAL | FP_ZERO );
|
|
}
|