2009-11-17 Edward Nevill <edward.nevill@arm.com>
authorRamana Radhakrishnan <ramana.r@gmail.com>
Tue, 17 Nov 2009 10:43:09 +0000 (10:43 +0000)
committerRamana Radhakrishnan <ramana.r@gmail.com>
Tue, 17 Nov 2009 10:43:09 +0000 (10:43 +0000)
* arm-dis.c (print_insn_thumb32): Handle undefined instruction.

opcodes/ChangeLog
opcodes/arm-dis.c

index 86697d56315135d89f625d7251a29684f9b9771c..7f3dee9b7f5807e6fe6ccf230fbafbf428c8bd70 100644 (file)
@@ -1,3 +1,7 @@
+2009-11-17  Edward Nevill <edward.nevill@arm.com>
+
+       * arm-dis.c (print_insn_thumb32): Handle undefined instruction.
+
 2009-11-14  Doug Evans  <dje@sebabeach.org>
 
        * Makefile.am (stamp-xc16x): Use ../cpu/xc16x.cpu instead of
index 0d99c6c8ee03e46e14b45660565ccea3267006bd..ba19f7c1567bd125dd2111928b3a794771e75da3 100644 (file)
@@ -3932,6 +3932,10 @@ print_insn_thumb32 (bfd_vma pc, struct disassemble_info *info, long given)
                      func (stream, "%c", c[(1 << width) - (int) val]);
                      c += 1 << width;
                      break;
+                     
+                   case 'x':
+                     func (stream, "0x%lx", val & 0xffffffffUL);
+                     break;
 
                    default:
                      abort ();
This page took 0.029212 seconds and 4 git commands to generate.