diff options
Diffstat (limited to 'arm-dis.c')
-rw-r--r-- | arm-dis.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1556,6 +1556,11 @@ print_insn_arm (pc, info) } is_thumb = force_thumb; + if (pc & 1) + { + is_thumb = 1; + pc &= ~(bfd_vma) 1; + } #if 0 if (!is_thumb && info->symbols != NULL) |