summaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2007-09-27 11:14:10 +0000
committerKazu Hirata <kazu@codesourcery.com>2007-09-27 11:14:10 +0000
commita1b8c2730d3be6526da49d110c4638d1b11f89cf (patch)
treedb0814b08fd5fc3ab1ba6ac73baa533f1bd399e5 /opcodes
parentf3eee019b1aea6f8030960fdd539d9ebae737bd4 (diff)
downloadbinutils-redhat-a1b8c2730d3be6526da49d110c4638d1b11f89cf.tar.gz
gas/
* config/m68k-parse.h (m68k_register): Use MBO instead of MBB. (last_movec_reg): Change to MBO. * config/tc-m68k.c (fido_ctrl): Use MBO instead of MBB. (m68k_ip): Use MBO instead of MBO. (init_table): Use MBO instead of MBO. Add an entry for mbo. gas/testsuite/ * gas/m68k/fido.s: Add tests for %mbo. * gas/m68k/fido.d: Update accordingly. opcodes/ * m68k-dis.c (print_insn_arg): Use %mbo instead of %mbb.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/m68k-dis.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 82d3eef26c..391b552c7e 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-27 Kazu Hirata <kazu@codesourcery.com>
+
+ * m68k-dis.c (print_insn_arg): Use %mbo instead of %mbb.
+
2007-09-26 James E. Wilson <wilson@specifix.com>
* ia64-gen.c (print_dependency_table): Fix typo in last patch.
diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c
index b9d8a0471c..77820ef8a0 100644
--- a/opcodes/m68k-dis.c
+++ b/opcodes/m68k-dis.c
@@ -641,7 +641,7 @@ print_insn_arg (const char *d,
{"%urp", 0x806}, {"%srp", 0x807}, {"%pcr", 0x808},
/* Fido added these. */
- {"%cac", 0xffe}, {"%mbb", 0xfff}};
+ {"%cac", 0xffe}, {"%mbo", 0xfff}};
val = fetch_arg (buffer, place, 12, info);
for (regno = sizeof names / sizeof names[0] - 1; regno >= 0; regno--)