glibc/sysdeps/ieee754/dbl-64/s_isinf_ns.c

21 lines
327 B
C
Raw Normal View History

2011-10-08 14:18:26 +00:00
/*
* Written by Ulrich Drepper <drepper@gmail.com>.
*/
/*
* __isinf_ns(x) returns != 0 if x is ±inf, else 0;
* no branching!
*/
#include <math.h>
#include <math_private.h>
2011-10-08 14:18:26 +00:00
#undef __isinf_ns
int
__isinf_ns (double x)
{
2013-10-17 14:03:24 +00:00
int32_t hx, lx;
EXTRACT_WORDS (hx, lx, x);
return !(lx | ((hx & 0x7fffffff) ^ 0x7ff00000));
2011-10-08 14:18:26 +00:00
}