Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / ieee754 / dbl-64 / wordsize-64 / s_isinf.c
blob163fc31efc6399ca9da6f5d16a20b76bcee0014a
1 /*
2 * Written by J.T. Conklin <jtc@netbsd.org>.
3 * Changed to return -1 for -Inf by Ulrich Drepper <drepper@cygnus.com>.
4 * Public domain.
5 */
7 /*
8 * isinf(x) returns 1 is x is inf, -1 if x is -inf, else 0;
9 * no branching!
12 #include <math.h>
13 #include <math_private.h>
15 int
16 __isinf (double x)
18 int64_t ix;
19 EXTRACT_WORDS64(ix,x);
20 int64_t t = ix & UINT64_C(0x7fffffffffffffff);
21 t ^= UINT64_C(0x7ff0000000000000);
22 t |= -t;
23 return ~(t >> 63) & (ix >> 62);
25 hidden_def (__isinf)
26 weak_alias (__isinf, isinf)
27 #ifdef NO_LONG_DOUBLE
28 strong_alias (__isinf, __isinfl)
29 weak_alias (__isinf, isinfl)
30 #endif