diff options
author | Michael Eager <eager@eagercon.com> | 2012-11-29 21:09:01 +0000 |
---|---|---|
committer | Michael Eager <eager@eagercon.com> | 2012-11-29 21:09:01 +0000 |
commit | 94dda8b768b96328d755a95ca10c77f3860519b9 (patch) | |
tree | 4d5f4b2ac1e3721ecbb540a94d18210899e9189c /opcodes/microblaze-dis.c | |
parent | 4983028c3a5e15579946e69ab63db20d1dd78a79 (diff) | |
download | gdb-94dda8b768b96328d755a95ca10c77f3860519b9.zip gdb-94dda8b768b96328d755a95ca10c77f3860519b9.tar.gz gdb-94dda8b768b96328d755a95ca10c77f3860519b9.tar.bz2 |
opcodes/Changelog:
* microblaze-opc.h: Rename INST_TYPE_RD_R1_SPECIAL to
INST_TYPE_R1_R2_SPECIAL
* microblaze-dis.c (print_insn_microblaze): Same.
gas/Changelog
* gas/config/tc-microblaze.c: Rename INST_TYPE_RD_R1_SPECIAL to
INST_TYPE_R1_R2_SPECIAL, don't set RD for wic.
Diffstat (limited to 'opcodes/microblaze-dis.c')
-rw-r--r-- | opcodes/microblaze-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/microblaze-dis.c b/opcodes/microblaze-dis.c index 7e3a546..bf028c4 100644 --- a/opcodes/microblaze-dis.c +++ b/opcodes/microblaze-dis.c @@ -383,8 +383,8 @@ print_insn_microblaze (bfd_vma memaddr, struct disassemble_info * info) case INST_TYPE_R1: print_func (stream, "\t%s", get_field_r1 (inst)); break; - case INST_TYPE_RD_R1_SPECIAL: - print_func (stream, "\t%s, %s", get_field_rd (inst), get_field_r2 (inst)); + case INST_TYPE_R1_R2_SPECIAL: + print_func (stream, "\t%s, %s", get_field_r1 (inst), get_field_r2 (inst)); break; case INST_TYPE_RD_IMM15: print_func (stream, "\t%s, %s", get_field_rd (inst), get_field_imm15 (inst)); |