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

isnan.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b38bc290e208d16f11466001af76043bd1f11d18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <math.h>

int
__isnan (double _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;
}

#undef isnan
int __attribute__ ((alias ("__isnan"))) isnan (double);