Mercurial > hg > CbC > CbC_gcc
view libquadmath/math/isinf_nsq.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
line wrap: on
line source
/* * Written by Ulrich Drepper <drepper@gmail.com> */ /* * __quadmath_isinf_nsq (x) returns != 0 if x is ±inf, else 0; * no branching! */ #include "quadmath-imp.h" int __quadmath_isinf_nsq (__float128 x) { int64_t hx,lx; GET_FLT128_WORDS64(hx,lx,x); return !(lx | ((hx & 0x7fffffffffffffffLL) ^ 0x7fff000000000000LL)); }