aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_shortShift128ExtraRightJam.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/s_shortShift128ExtraRightJam.c')
-rwxr-xr-xsoftfloat/s_shortShift128ExtraRightJam.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/softfloat/s_shortShift128ExtraRightJam.c b/softfloat/s_shortShift128ExtraRightJam.c
deleted file mode 100755
index c772740..0000000
--- a/softfloat/s_shortShift128ExtraRightJam.c
+++ /dev/null
@@ -1,20 +0,0 @@
-
-#include <stdint.h>
-#include "platform.h"
-#include "primitives.h"
-
-struct uint128_extra
- softfloat_shortShift128ExtraRightJam(
- uint64_t a64, uint64_t a0, uint64_t extra, unsigned int count )
-{
- unsigned int negCount;
- struct uint128_extra z;
-
- negCount = - count;
- z.v64 = a64>>count;
- z.v0 = a64<<( negCount & 63 ) | a0>>count;
- z.extra = a0<<( negCount & 63 ) | ( extra != 0 );
- return z;
-
-}
-