s_isnanf.c 789 B

1234567891011121314151617181920212223242526272829303132
  1. /* s_isnanf.c -- float version of s_isnan.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. * isnanf(x) returns 1 is x is nan, else 0;
  16. * no branching!
  17. */
  18. #include "math.h"
  19. #include "math_private.h"
  20. int __isnanf(float x)
  21. {
  22. int32_t ix;
  23. GET_FLOAT_WORD(ix,x);
  24. ix &= 0x7fffffff;
  25. ix = 0x7f800000 - ix;
  26. return (int)(((u_int32_t)(ix))>>31);
  27. }
  28. libm_hidden_def(__isnanf)