aboutsummaryrefslogtreecommitdiff
path: root/softfloat/ui64_to_f64.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/ui64_to_f64.c')
-rwxr-xr-xsoftfloat/ui64_to_f64.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/softfloat/ui64_to_f64.c b/softfloat/ui64_to_f64.c
deleted file mode 100755
index 52c158b..0000000
--- a/softfloat/ui64_to_f64.c
+++ /dev/null
@@ -1,25 +0,0 @@
-
-#include <stdint.h>
-#include "platform.h"
-#include "primitives.h"
-#include "internals.h"
-#include "softfloat.h"
-
-float64_t ui64_to_f64( uint_fast64_t a )
-{
- union ui64_f64 uZ;
-
- if ( ! a ) {
- uZ.ui = 0;
- return uZ.f;
- }
- if ( a & UINT64_C( 0x8000000000000000 ) ) {
- return
- softfloat_roundPackToF64(
- 0, 0x43D, softfloat_shortShift64RightJam( a, 1 ) );
- } else {
- return softfloat_normRoundPackToF64( 0, 0x43C, a );
- }
-
-}
-