ARM thumb disassembly (Paul Brook)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1416 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-04-27 20:15:00 +00:00
parent 192c7bd927
commit c2d551ff5a
2 changed files with 23 additions and 3 deletions

View file

@ -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)