diff options
author | Nick Clifton <nickc@redhat.com> | 2007-11-07 16:37:44 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-11-07 16:37:44 +0000 |
commit | 57d85092b174916404b84b9a2a1ddb50af270084 (patch) | |
tree | 25e8833459aee728a614c8a84f8ee7b636625661 /opcodes | |
parent | 679936aac4c61ba53dc087d4d069543f3785a20c (diff) | |
download | gdb-57d85092b174916404b84b9a2a1ddb50af270084.zip gdb-57d85092b174916404b84b9a2a1ddb50af270084.tar.gz gdb-57d85092b174916404b84b9a2a1ddb50af270084.tar.bz2 |
PR gas/5228
* m68k-opc.c (m68k_opcodes): Fix coldfire msac.w instructions with parallel loads.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 6 | ||||
-rw-r--r-- | opcodes/m68k-opc.c | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index b80747f..7217151 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,9 @@ +2007-11-07 Jens Arnold <jens@jens-arnold.net> + + PR gas/5228 + * m68k-opc.c (m68k_opcodes): Fix coldfire msac.w instructions with + parallel loads. + 2007-11-07 Tristan Gingold <gingold@adacore.com> * ia64-dis.c (print_insn_ia64): Generate symbolic names for cr diff --git a/opcodes/m68k-opc.c b/opcodes/m68k-opc.c index e3b7a45..05bceea 100644 --- a/opcodes/m68k-opc.c +++ b/opcodes/m68k-opc.c @@ -1678,9 +1678,9 @@ const struct m68k_opcode m68k_opcodes[] = {"msacw", 4, two(0xa000, 0x0300), two(0xf1b0, 0x0900), "uMumMh", mcfmac }, {"msacw", 4, two(0xa000, 0x0100), two(0xf1b0, 0x0f00), "uMum", mcfmac }, -{"msacw", 4, two(0xa000, 0x0100), two(0xf100, 0x0900), "uMumiI4/RneG", mcfemac },/* Ry,Rx,SF,<ea>,accX. */ -{"msacw", 4, two(0xa000, 0x0300), two(0xf100, 0x0900), "uMumMh4/RneG", mcfemac },/* Ry,Rx,+1/-1,<ea>,accX. */ -{"msacw", 4, two(0xa000, 0x0100), two(0xf100, 0x0f00), "uMum4/RneG", mcfemac },/* Ry,Rx,<ea>,accX. */ +{"msacw", 4, two(0xa000, 0x0100), two(0xf100, 0x0900), "uNuoiI4/RneG", mcfemac },/* Ry,Rx,SF,<ea>,accX. */ +{"msacw", 4, two(0xa000, 0x0300), two(0xf100, 0x0900), "uNuoMh4/RneG", mcfemac },/* Ry,Rx,+1/-1,<ea>,accX. */ +{"msacw", 4, two(0xa000, 0x0100), two(0xf100, 0x0f00), "uNuo4/RneG", mcfemac },/* Ry,Rx,<ea>,accX. */ {"msacw", 4, two(0xa000, 0x0100), two(0xf130, 0x0900), "uMumiIeH", mcfemac },/* Ry,Rx,SF,accX. */ {"msacw", 4, two(0xa000, 0x0300), two(0xf130, 0x0900), "uMumMheH", mcfemac },/* Ry,Rx,+1/-1,accX. */ {"msacw", 4, two(0xa000, 0x0100), two(0xf130, 0x0f00), "uMumeH", mcfemac }, /* Ry,Rx,accX. */ |