aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_shift64ExtraRightJam.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/s_shift64ExtraRightJam.c')
-rwxr-xr-xsoftfloat/s_shift64ExtraRightJam.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/softfloat/s_shift64ExtraRightJam.c b/softfloat/s_shift64ExtraRightJam.c
new file mode 100755
index 0000000..167ea54
--- /dev/null
+++ b/softfloat/s_shift64ExtraRightJam.c
@@ -0,0 +1,23 @@
+
+#include <stdint.h>
+#include "platform.h"
+#include "primitives.h"
+
+struct uint64_extra
+ softfloat_shift64ExtraRightJam(
+ uint64_t a, uint64_t extra, unsigned int count )
+{
+ struct uint64_extra z;
+
+ if ( count < 64 ) {
+ z.v = a>>count;
+ z.extra = a<<( ( - count ) & 63 );
+ } else {
+ z.v = 0;
+ z.extra = ( count == 64 ) ? a : ( a != 0 );
+ }
+ z.extra |= ( extra != 0 );
+ return z;
+
+}
+