diff options
author | Jeff Law <law@redhat.com> | 1996-12-10 19:13:07 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-12-10 19:13:07 +0000 |
commit | 0888b4a38a90b27443704806dd7fa4e66ff58ee8 (patch) | |
tree | de55196066a08da50b68012799390e6f58ca4dd7 /opcodes | |
parent | 41a0ed225b34c80c48cdf4842f40a84177bee3b2 (diff) | |
download | gdb-0888b4a38a90b27443704806dd7fa4e66ff58ee8.zip gdb-0888b4a38a90b27443704806dd7fa4e66ff58ee8.tar.gz gdb-0888b4a38a90b27443704806dd7fa4e66ff58ee8.tar.bz2 |
* mn10200-opc.c (mn10200_operands): Fix insertion position
for DI operand.
Found by gas testsuite.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/mn10200-opc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 159d38b..f46d3da 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +Tue Dec 10 12:08:05 1996 Jeffrey A Law (law@cygnus.com) + + * mn10200-opc.c (mn10200_operands): Fix insertion position + for DI operand. + Mon Dec 9 16:42:43 1996 Jeffrey A Law (law@cygnus.com) * mn10200-opc.c: Create mn10200 opcode table. diff --git a/opcodes/mn10200-opc.c b/opcodes/mn10200-opc.c index 16266c1..e52c869 100644 --- a/opcodes/mn10200-opc.c +++ b/opcodes/mn10200-opc.c @@ -99,7 +99,7 @@ const struct mn10200_operand mn10200_operands[] = { /* Index register. */ #define DI (MDR+1) - {2, 2, MN10200_OPERAND_DREG}, + {2, 4, MN10200_OPERAND_DREG}, /* 8 bit signed displacement, may promote to 16bit signed dispacement. */ #define SD8 (DI+1) |