Fix an undefined shift operation.
This commit is contained in:
parent
d4f6b49dc4
commit
85fa35f651
1 changed files with 3 additions and 1 deletions
|
@ -1293,7 +1293,9 @@ lPling:
|
|||
op = num(op, rot);
|
||||
}
|
||||
else {
|
||||
imm8 = (imm8>>rot) | (imm8<<(32-rot));
|
||||
if (rot != 0) {
|
||||
imm8 = (imm8>>rot) | (imm8<<(32-rot));
|
||||
}
|
||||
if (c=='*') {
|
||||
*op++='#';
|
||||
if (imm8>256 && ((imm8&(imm8-1))==0)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue