diff options
author | Richard Earnshaw <richard.earnshaw@arm.com> | 2002-01-19 12:27:24 +0000 |
---|---|---|
committer | Richard Earnshaw <richard.earnshaw@arm.com> | 2002-01-19 12:27:24 +0000 |
commit | a2fc1b1f19d4d4853d78d0c7bf7ed42e06cbb8a1 (patch) | |
tree | 3fd103c5cef719a6a309d1bc96e20be6c5d61b11 /opcodes/arm-dis.c | |
parent | 140f998426704f8ef286f58033ab983850d39552 (diff) | |
download | gdb-a2fc1b1f19d4d4853d78d0c7bf7ed42e06cbb8a1.zip gdb-a2fc1b1f19d4d4853d78d0c7bf7ed42e06cbb8a1.tar.gz gdb-a2fc1b1f19d4d4853d78d0c7bf7ed42e06cbb8a1.tar.bz2 |
* arm-opc.h (arm_opcodes): Use generic rule %5?hb instead of %h.
* arm-dis.c (print_insn_arm): Don't handle 'h' case.
Diffstat (limited to 'opcodes/arm-dis.c')
-rw-r--r-- | opcodes/arm-dis.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index b2807c5..7e9b330 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -390,13 +390,6 @@ print_insn_arm (pc, info, given) func (stream, "t"); break; - case 'h': - if ((given & 0x00000020) == 0x00000020) - func (stream, "h"); - else - func (stream, "b"); - break; - case 'A': func (stream, "[%s", arm_regnames [(given >> 16) & 0xf]); if ((given & 0x01000000) != 0) |