aboutsummaryrefslogtreecommitdiff
path: root/softfloat_riscv/s_isSigNaNF64UI.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat_riscv/s_isSigNaNF64UI.c')
-rwxr-xr-xsoftfloat_riscv/s_isSigNaNF64UI.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/softfloat_riscv/s_isSigNaNF64UI.c b/softfloat_riscv/s_isSigNaNF64UI.c
deleted file mode 100755
index d255213..0000000
--- a/softfloat_riscv/s_isSigNaNF64UI.c
+++ /dev/null
@@ -1,15 +0,0 @@
-
-#include <stdbool.h>
-#include <stdint.h>
-#include "platform.h"
-#include "specialize.h"
-
-bool softfloat_isSigNaNF64UI( uint_fast64_t ui )
-{
-
- return
- ( ( ui>>51 & 0xFFF ) == 0xFFE )
- && ( ui & UINT64_C( 0x0007FFFFFFFFFFFF ) );
-
-}
-