aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_le128.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/s_le128.c')
-rwxr-xr-xsoftfloat/s_le128.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/softfloat/s_le128.c b/softfloat/s_le128.c
deleted file mode 100755
index 83b1d7f..0000000
--- a/softfloat/s_le128.c
+++ /dev/null
@@ -1,13 +0,0 @@
-
-#include <stdbool.h>
-#include <stdint.h>
-#include "platform.h"
-#include "primitives.h"
-
-bool softfloat_le128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 )
-{
-
- return ( a64 < b64 ) || ( ( a64 == b64 ) && ( a0 <= b0 ) );
-
-}
-