s_isnanf.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. #if defined(LIBM_SCCS) && !defined(lint)
  15. static char rcsid[] = "$NetBSD: s_isnanf.c,v 1.4 1995/05/10 20:47:38 jtc Exp $";
  16. #endif
  17. /*
  18. * isnanf(x) returns 1 is x is nan, else 0;
  19. * no branching!
  20. */
  21. #include "math.h"
  22. #include "math_private.h"
  23. libm_hidden_proto (__isnanf)
  24. #ifdef __STDC__
  25. int __isnanf(float x)
  26. #else
  27. int __isnanf(x)
  28. float x;
  29. #endif
  30. {
  31. int32_t ix;
  32. GET_FLOAT_WORD(ix,x);
  33. ix &= 0x7fffffff;
  34. ix = 0x7f800000 - ix;
  35. return (int)(((u_int32_t)(ix))>>31);
  36. }
  37. libm_hidden_def (__isnanf)
  38. weak_alias (__isnanf, isnanf)