aboutsummaryrefslogtreecommitdiff
path: root/softfloat/8086/s_commonNaNToF64UI.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/8086/s_commonNaNToF64UI.c')
-rwxr-xr-xsoftfloat/8086/s_commonNaNToF64UI.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/softfloat/8086/s_commonNaNToF64UI.c b/softfloat/8086/s_commonNaNToF64UI.c
deleted file mode 100755
index d5a01d0..0000000
--- a/softfloat/8086/s_commonNaNToF64UI.c
+++ /dev/null
@@ -1,21 +0,0 @@
-// See LICENSE.SoftFloat for license details.
-
-
-#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( 0x7FF8000000000000 )
- | a.v64>>12;
-
-}
-