You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
433 B
17 lines
433 B
|
|
#include <stdint.h>
|
|
#include "platform.h"
|
|
#include "specialize.h"
|
|
|
|
/*----------------------------------------------------------------------------
|
|
| Returns the result of converting the canonical NaN `a' to the double-
|
|
| precision floating-point format.
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
uint_fast64_t softfloat_commonNaNToF64UI( struct commonNaN a )
|
|
{
|
|
|
|
return defaultNaNF64UI;
|
|
|
|
}
|
|
|
|
|