OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libm/] [math/] [sf_nan.c] - Rev 1765

Compare with Previous | Blame | View Log

/*
 * nanf () returns a nan.
 * Added by Cygnus Support.
 */
 
#include "fdlibm.h"
 
	float nanf()
{
	float x;
 
	SET_FLOAT_WORD(x,0x7fc00000);
	return x;
}
 
#ifdef _DOUBLE_IS_32BITS
 
	double nan()
{
	return (double) nanf();
}
 
#endif /* defined(_DOUBLE_IS_32BITS) */
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.