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