s_finitef.c 838 B

1234567891011121314151617181920212223242526272829303132
  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. libm_hidden_proto(__finitef)
  21. int __finitef(float x)
  22. {
  23. int32_t ix;
  24. GET_FLOAT_WORD(ix,x);
  25. return (int)((u_int32_t)((ix&0x7fffffff)-0x7f800000)>>31);
  26. }
  27. libm_hidden_def(__finitef)
  28. strong_alias(__finitef,finitef)