aboutsummaryrefslogtreecommitdiff
path: root/softfloat_riscv/s_commonNaNToF32UI.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat_riscv/s_commonNaNToF32UI.c')
-rwxr-xr-xsoftfloat_riscv/s_commonNaNToF32UI.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/softfloat_riscv/s_commonNaNToF32UI.c b/softfloat_riscv/s_commonNaNToF32UI.c
new file mode 100755
index 0000000..61f2735
--- /dev/null
+++ b/softfloat_riscv/s_commonNaNToF32UI.c
@@ -0,0 +1,17 @@
+
+#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 | 0x7FFFFFFF;
+
+}
+