s_finitef.c 777 B

123456789101112131415161718192021222324252627282930
  1. /* s_finitef.c -- float version of s_finite.c.
  2. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
  3. */
  4. /*
  5. * ====================================================
  6. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  7. *
  8. * Developed at SunPro, a Sun Microsystems, Inc. business.
  9. * Permission to use, copy, modify, and distribute this
  10. * software is freely granted, provided that this notice
  11. * is preserved.
  12. * ====================================================
  13. */
  14. /*
  15. * finitef(x) returns 1 is x is finite, else 0;
  16. * no branching!
  17. */
  18. #include "math.h"
  19. #include "math_private.h"
  20. int __finitef(float x)
  21. {
  22. int32_t ix;
  23. GET_FLOAT_WORD(ix,x);
  24. return (int)((u_int32_t)((ix&0x7fffffff)-0x7f800000)>>31);
  25. }
  26. libm_hidden_def(__finitef)