Fix misalignment handling for an address calculated from the sum of two
registers.
Signed-off-by: David Howells <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
address += *postinc;
break;
case DM1:
- postinc = ®isters[Dreg_index[opcode >> 2 & 0x0c]];
+ postinc = ®isters[Dreg_index[opcode >> 2 & 0x03]];
address += *postinc;
break;
case DM2:
- postinc = ®isters[Dreg_index[opcode >> 4 & 0x30]];
+ postinc = ®isters[Dreg_index[opcode >> 4 & 0x03]];
address += *postinc;
break;
case AM0:
address += *postinc;
break;
case AM1:
- postinc = ®isters[Areg_index[opcode >> 2 & 0x0c]];
+ postinc = ®isters[Areg_index[opcode >> 2 & 0x03]];
address += *postinc;
break;
case AM2:
- postinc = ®isters[Areg_index[opcode >> 4 & 0x30]];
+ postinc = ®isters[Areg_index[opcode >> 4 & 0x03]];
address += *postinc;
break;
case RM0: