Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118852
b: refs/heads/master
c: 852c15b
h: refs/heads/master
v: v3
  • Loading branch information
David Howells authored and Linus Torvalds committed Nov 12, 2008
1 parent 9abccb5 commit 26e8ebf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6d615c78fb92fbd80e52ba7acb2d4c4d503006c3
refs/heads/master: 852c15b7362cf34e0d7949abefbfeeb0845d93b4
8 changes: 4 additions & 4 deletions trunk/arch/mn10300/mm/misalignment.c
Original file line number Diff line number Diff line change
Expand Up @@ -570,23 +570,23 @@ static int misalignment_addr(unsigned long *registers, unsigned params,
address += *postinc;
break;
case DM1:
postinc = &registers[Dreg_index[opcode >> 2 & 0x0c]];
postinc = &registers[Dreg_index[opcode >> 2 & 0x03]];
address += *postinc;
break;
case DM2:
postinc = &registers[Dreg_index[opcode >> 4 & 0x30]];
postinc = &registers[Dreg_index[opcode >> 4 & 0x03]];
address += *postinc;
break;
case AM0:
postinc = &registers[Areg_index[opcode & 0x03]];
address += *postinc;
break;
case AM1:
postinc = &registers[Areg_index[opcode >> 2 & 0x0c]];
postinc = &registers[Areg_index[opcode >> 2 & 0x03]];
address += *postinc;
break;
case AM2:
postinc = &registers[Areg_index[opcode >> 4 & 0x30]];
postinc = &registers[Areg_index[opcode >> 4 & 0x03]];
address += *postinc;
break;
case RM0:
Expand Down

0 comments on commit 26e8ebf

Please sign in to comment.