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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libm/] [common/] [sf_nan.c] - Diff between revs 56 and 57

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

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

powered by: WebSVN 2.1.0

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