aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_shift32RightJam.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/s_shift32RightJam.c')
-rwxr-xr-xsoftfloat/s_shift32RightJam.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/softfloat/s_shift32RightJam.c b/softfloat/s_shift32RightJam.c
deleted file mode 100755
index b697a34..0000000
--- a/softfloat/s_shift32RightJam.c
+++ /dev/null
@@ -1,15 +0,0 @@
-
-#include <stdint.h>
-#include "platform.h"
-#include "primitives.h"
-
-uint32_t softfloat_shift32RightJam( uint32_t a, unsigned int count )
-{
-
- return
- ( count < 32 )
- ? a>>count | ( (uint32_t) ( a<<( ( - count ) & 31 ) ) != 0 )
- : ( a != 0 );
-
-}
-