s_isnan.c 751 B

12345678910111213141516171819202122232425262728293031
  1. #include "SDL_internal.h"
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunPro, a Sun Microsystems, Inc. business.
  7. * Permission to use, copy, modify, and distribute this
  8. * software is freely granted, provided that this notice
  9. * is preserved.
  10. * ====================================================
  11. */
  12. /*
  13. * isnan(x) returns 1 is x is nan, else 0;
  14. * no branching!
  15. */
  16. #include "math.h"
  17. #include "math_private.h"
  18. int __isnan(double x)
  19. {
  20. int32_t hx,lx;
  21. EXTRACT_WORDS(hx,lx,x);
  22. hx &= 0x7fffffff;
  23. hx |= (u_int32_t)(lx|(-lx))>>31;
  24. hx = 0x7ff00000 - hx;
  25. return (int)(((u_int32_t)hx)>>31);
  26. }
  27. weak_alias(__isnan, isnan)
  28. libm_hidden_def(__isnan)