aboutsummaryrefslogtreecommitdiff
path: root/softfloat/8086/s_commonNaNToF32UI.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/8086/s_commonNaNToF32UI.c')
-rwxr-xr-xsoftfloat/8086/s_commonNaNToF32UI.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/softfloat/8086/s_commonNaNToF32UI.c b/softfloat/8086/s_commonNaNToF32UI.c
deleted file mode 100755
index 3b96c41..0000000
--- a/softfloat/8086/s_commonNaNToF32UI.c
+++ /dev/null
@@ -1,17 +0,0 @@
-
-#include <stdint.h>
-#include "platform.h"
-#include "specialize.h"
-
-/*----------------------------------------------------------------------------
-| Returns the result of converting the canonical NaN `a' to the single-
-| precision floating-point format.
-*----------------------------------------------------------------------------*/
-
-uint_fast32_t softfloat_commonNaNToF32UI( struct commonNaN a )
-{
-
- return (uint_fast32_t) a.sign<<31 | 0x7FC00000 | a.v64>>41;
-
-}
-