s_isinff.c 376 B

1234567891011121314151617181920212223
  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 __isinff (float x)
  12. {
  13. int32_t ix,t;
  14. GET_FLOAT_WORD(ix,x);
  15. t = ix & 0x7fffffff;
  16. t ^= 0x7f800000;
  17. t |= -t;
  18. return ~(t >> 31) & (ix >> 30);
  19. }
  20. libm_hidden_def(__isinff)