aboutsummaryrefslogtreecommitdiff
path: root/softfloat/ui32_to_f32.c
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2011-06-19 21:45:58 -0700
committerAndrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2011-06-19 21:45:58 -0700
commit1e163c715550e20e239976a22e00869884713e54 (patch)
treedbcf7b10e35421c72758df098057014fef7ffff7 /softfloat/ui32_to_f32.c
parent0edaecc54329048eb91ad6a45338265ef1a4569c (diff)
downloadriscv-pk-1e163c715550e20e239976a22e00869884713e54.zip
riscv-pk-1e163c715550e20e239976a22e00869884713e54.tar.gz
riscv-pk-1e163c715550e20e239976a22e00869884713e54.tar.bz2
fixed build after repo split
Diffstat (limited to 'softfloat/ui32_to_f32.c')
-rwxr-xr-xsoftfloat/ui32_to_f32.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/softfloat/ui32_to_f32.c b/softfloat/ui32_to_f32.c
new file mode 100755
index 0000000..ba0fc1a
--- /dev/null
+++ b/softfloat/ui32_to_f32.c
@@ -0,0 +1,25 @@
+
+#include <stdint.h>
+#include "platform.h"
+#include "primitives.h"
+#include "internals.h"
+#include "softfloat.h"
+
+float32_t ui32_to_f32( uint_fast32_t a )
+{
+ union ui32_f32 uZ;
+
+ if ( ! a ) {
+ uZ.ui = 0;
+ return uZ.f;
+ }
+ if ( a & 0x80000000 ) {
+ return
+ softfloat_roundPackToF32(
+ 0, 0x9D, softfloat_shortShift32Right1Jam( a ) );
+ } else {
+ return softfloat_normRoundPackToF32( 0, 0x9C, a );
+ }
+
+}
+