Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isnanf.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73fe0eb02075d68ade2e7bc52c26f236acd6ab0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <math.h>
int
__isnanf (float _x)
{
  unsigned short _sw;
  __asm__ ("fxam;"
	   "fstsw %%ax": "=a" (_sw) : "t" (_x) );
  return (_sw & (FP_NAN | FP_NORMAL | FP_INFINITE | FP_ZERO | FP_SUBNORMAL))
    == FP_NAN;
}

int __attribute__ ((alias ("__isnanf"))) isnanf (float);