s_isinff.c 376 B

123456789101112131415161718192021222324
  1. /*
  2. * Written by J.T. Conklin <jtc@netbsd.org>.
  3. * Public domain.
  4. */
  5. /*
  6. * isinff(x) returns 1 if x is inf, -1 if x is -inf, else 0;
  7. * no branching!
  8. */
  9. #include "math.h"
  10. #include "math_private.h"
  11. int
  12. __isinff (float x)
  13. {
  14. int32_t ix,t;
  15. GET_FLOAT_WORD(ix,x);
  16. t = ix & 0x7fffffff;
  17. t ^= 0x7f800000;
  18. t |= -t;
  19. return ~(t >> 31) & (ix >> 30);
  20. }
  21. libm_hidden_def(__isinff)