ARM7: Fix typo that invoked undefined behavior

This commit is contained in:
Jeffrey Pfau 2016-01-16 10:06:01 -08:00
parent 1dceadbbf5
commit 7e6f9f2092
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@
info->operandFormat >>= 8; \
} else if (SKIPPED == 2) { \
info->op2 = info->op3; \
info->operandFormat |= info->operandFormat >>= 8; \
info->operandFormat |= info->operandFormat >> 8; \
info->operandFormat &= ~ARM_OPERAND_3; \
} \
if (info->op1.reg == ARM_PC) { \