diff options
Diffstat (limited to 'softfloat/8086/s_commonNaNToF32UI.c')
-rwxr-xr-x | softfloat/8086/s_commonNaNToF32UI.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/softfloat/8086/s_commonNaNToF32UI.c b/softfloat/8086/s_commonNaNToF32UI.c deleted file mode 100755 index c8fe02b..0000000 --- a/softfloat/8086/s_commonNaNToF32UI.c +++ /dev/null @@ -1,19 +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 single-
-| precision floating-point format.
-*----------------------------------------------------------------------------*/
-
-uint_fast32_t softfloat_commonNaNToF32UI( struct commonNaN a )
-{
-
- return (uint_fast32_t) a.sign<<31 | 0x7FC00000 | a.v64>>41;
-
-}
-
|