diff options
Diffstat (limited to 'softfloat/8086/s_isSigNaNF64UI.c')
-rwxr-xr-x | softfloat/8086/s_isSigNaNF64UI.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/softfloat/8086/s_isSigNaNF64UI.c b/softfloat/8086/s_isSigNaNF64UI.c deleted file mode 100755 index a5fbd2c..0000000 --- a/softfloat/8086/s_isSigNaNF64UI.c +++ /dev/null @@ -1,17 +0,0 @@ -// See LICENSE.SoftFloat for license details. - - -#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 ) ); - -} - |