aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_isSigNaNF32UI.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/s_isSigNaNF32UI.c')
-rwxr-xr-xsoftfloat/s_isSigNaNF32UI.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/softfloat/s_isSigNaNF32UI.c b/softfloat/s_isSigNaNF32UI.c
deleted file mode 100755
index 80be12c..0000000
--- a/softfloat/s_isSigNaNF32UI.c
+++ /dev/null
@@ -1,15 +0,0 @@
-// See LICENSE.SoftFloat for license details.
-
-
-#include <stdbool.h>
-#include <stdint.h>
-#include "platform.h"
-#include "specialize.h"
-
-bool softfloat_isSigNaNF32UI( uint_fast32_t ui )
-{
-
- return ( ( ui>>22 & 0x1FF ) == 0x1FE ) && ( ui & 0x003FFFFF );
-
-}
-