aboutsummaryrefslogtreecommitdiff
path: root/softfloat_riscv/s_commonNaNToF64UI.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat_riscv/s_commonNaNToF64UI.c')
-rwxr-xr-xsoftfloat_riscv/s_commonNaNToF64UI.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/softfloat_riscv/s_commonNaNToF64UI.c b/softfloat_riscv/s_commonNaNToF64UI.c
deleted file mode 100755
index da36c04..0000000
--- a/softfloat_riscv/s_commonNaNToF64UI.c
+++ /dev/null
@@ -1,18 +0,0 @@
-
-#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
- (uint_fast64_t) a.sign<<63 | UINT64_C( 0x7FFFFFFFFFFFFFFF );
-
-}
-