view libquadmath/math/isinf_nsq.c @ 138:fc828634a951

merge
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 08 Nov 2018 14:17:14 +0900
parents 04ced10e8804
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));
}