URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libm/] [common/] [sf_infinity.c] - Rev 1781
Go to most recent revision | Compare with Previous | Blame | View Log
/* * infinityf () returns the representation of infinity. * Added by Cygnus Support. */ #include "fdlibm.h" float infinityf() { float x; SET_FLOAT_WORD(x,0x7f800000); return x; } #ifdef _DOUBLE_IS_32BITS double infinity() { return (double) infinityf(); } #endif /* defined(_DOUBLE_IS_32BITS) */
Go to most recent revision | Compare with Previous | Blame | View Log