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