Retro68/gcc/newlib/libm/common/sf_isinff.c

26 lines
354 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/*
* __isinff(x) returns 1 if x is +-infinity, else 0;
* Added by Cygnus Support.
*/
#include "fdlibm.h"
int
2018-12-28 15:30:48 +00:00
__isinff (float x)
2017-04-11 21:13:36 +00:00
{
__int32_t ix;
GET_FLOAT_WORD(ix,x);
ix &= 0x7fffffff;
return FLT_UWORD_IS_INFINITE(ix);
}
#ifdef _DOUBLE_IS_32BITS
int
2018-12-28 15:30:48 +00:00
__isinfd (double x)
2017-04-11 21:13:36 +00:00
{
return __isinff((float) x);
}
#endif /* defined(_DOUBLE_IS_32BITS) */