summaryrefslogtreecommitdiffstats
path: root/disas.c
diff options
context:
space:
mode:
authorThomas Huth2022-04-12 18:58:35 +0200
committerThomas Huth2022-05-09 08:21:05 +0200
commit82f96346e1fc8eb81eb8e80fe0b95405a8cf42ee (patch)
treeaec794342f1f86fe43d50f7c968fd8e5987ba029 /disas.c
parentMerge tag 'qemu-sparc-20220508' of https://github.com/mcayland/qemu into staging (diff)
downloadqemu-82f96346e1fc8eb81eb8e80fe0b95405a8cf42ee.tar.gz
qemu-82f96346e1fc8eb81eb8e80fe0b95405a8cf42ee.tar.xz
qemu-82f96346e1fc8eb81eb8e80fe0b95405a8cf42ee.zip
disas: Remove old libopcode arm disassembler
Capstone should be superior to the old libopcode disassembler, so we can drop the old file nowadays. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220412165836.355850-3-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'disas.c')
-rw-r--r--disas.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/disas.c b/disas.c
index d41f34915d..4e443b4d49 100644
--- a/disas.c
+++ b/disas.c
@@ -192,7 +192,6 @@ static void initialize_debug_host(CPUDebug *s)
s->info.mach = bfd_mach_sparc_v9b;
#elif defined(__arm__)
/* TCG only generates code for arm mode. */
- s->info.print_insn = print_insn_arm;
s->info.cap_arch = CS_ARCH_ARM;
#elif defined(__MIPSEB__)
s->info.print_insn = print_insn_big_mips;