aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_shortShift192Left.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/s_shortShift192Left.c')
-rwxr-xr-xsoftfloat/s_shortShift192Left.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/softfloat/s_shortShift192Left.c b/softfloat/s_shortShift192Left.c
deleted file mode 100755
index ea1c8ce..0000000
--- a/softfloat/s_shortShift192Left.c
+++ /dev/null
@@ -1,22 +0,0 @@
-// See LICENSE.SoftFloat for license details.
-
-
-#include <stdint.h>
-#include "platform.h"
-#include "primitives.h"
-
-struct uint192
- softfloat_shortShift192Left(
- uint64_t a128, uint64_t a64, uint64_t a0, unsigned int count )
-{
- unsigned int negCount;
- struct uint192 z;
-
- negCount = - count;
- z.v128 = a128<<count | a64>>( negCount & 63 );
- z.v64 = a64<<count | a0>>( negCount & 63 );
- z.v0 = a0<<count;
- return z;
-
-}
-