Add C++11 header <cuchar>.
[official-gcc.git] / libquadmath / math / isinf_nsq.c
blob2f0834361c5f9d4bb5ba92c229bf2fd8e1e95576
1 /*
2 * Written by Ulrich Drepper <drepper@gmail.com>
3 */
5 /*
6 * __quadmath_isinf_nsq (x) returns != 0 if x is ±inf, else 0;
7 * no branching!
8 */
10 #include "quadmath-imp.h"
12 int
13 __quadmath_isinf_nsq (__float128 x)
15 int64_t hx,lx;
16 GET_FLT128_WORDS64(hx,lx,x);
17 return !(lx | ((hx & 0x7fffffffffffffffLL) ^ 0x7fff000000000000LL));