aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_commonNaNToF64UI.c
blob: 0555e1f7677c310104edb9b74f8671a17b607c6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#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;

}