s_finite.c 681 B

1234567891011121314151617181920212223242526272829303132
  1. /* @(#)s_finite.c 1.3 95/01/18 */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunSoft, 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. * finite(x) returns 1 is x is finite, else 0;
  14. * no branching!
  15. */
  16. #include "fdlibm.h"
  17. #ifdef __STDC__
  18. int finite(double x)
  19. #else
  20. int finite(x)
  21. double x;
  22. #endif
  23. {
  24. uint32_t hx;
  25. GET_HIGH_WORD(hx,x);
  26. return (unsigned)((hx&0x7fffffff)-0x7ff00000)>>31;
  27. }