diff options
Diffstat (limited to 'opcodes/sh-dis.c')
-rw-r--r-- | opcodes/sh-dis.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/opcodes/sh-dis.c b/opcodes/sh-dis.c index ed472dc..92d7139 100644 --- a/opcodes/sh-dis.c +++ b/opcodes/sh-dis.c @@ -323,6 +323,11 @@ print_insn_shx (memaddr, info) case bfd_mach_sh4: target_arch = arch_sh4; break; + case bfd_mach_sh5: + /* When we get here for sh64, it's because we want to disassemble + SHcompact, i.e. arch_sh4. */ + target_arch = arch_sh4; + break; default: abort (); } |