diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-14 01:59:22 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-14 01:59:22 -0300 |
| commit | b50bc46888cf9a8d94ae1590c0941be62a083533 (patch) | |
| tree | 1ed79b142b9decaf2d605e7f48019acd6dbd4bc3 /ChocolArm64/Decoder | |
| parent | d067b4d5e0e7860702bb9a10c832a46d15176fd8 (diff) | |
CPU fix for the cases using a Mask with shift = 0
Diffstat (limited to 'ChocolArm64/Decoder')
| -rw-r--r-- | ChocolArm64/Decoder/AOpCodeSimdImm.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ChocolArm64/Decoder/AOpCodeSimdImm.cs b/ChocolArm64/Decoder/AOpCodeSimdImm.cs index 2959aee6..e7dfe621 100644 --- a/ChocolArm64/Decoder/AOpCodeSimdImm.cs +++ b/ChocolArm64/Decoder/AOpCodeSimdImm.cs @@ -88,7 +88,14 @@ namespace ChocolArm64.Decoder private static long ShlOnes(long Value, int Shift) { - return Value << Shift | (long)(ulong.MaxValue >> (64 - Shift)); + if (Shift != 0) + { + return Value << Shift | (long)(ulong.MaxValue >> (64 - Shift)); + } + else + { + return Value; + } } } }
\ No newline at end of file |
