summaryrefslogtreecommitdiffstats
path: root/disas.c
diff options
context:
space:
mode:
authorThomas Huth2022-05-05 19:36:19 +0200
committerThomas Huth2022-05-09 08:21:05 +0200
commit333f944c15e7a6f5503f92d80529a368519d6638 (patch)
treeaa659a82a4c2d8d7d9cf2843d13fc10808e83f5b /disas.c
parentdisas: Remove old libopcode i386 disassembler (diff)
downloadqemu-333f944c15e7a6f5503f92d80529a368519d6638.tar.gz
qemu-333f944c15e7a6f5503f92d80529a368519d6638.tar.xz
qemu-333f944c15e7a6f5503f92d80529a368519d6638.zip
disas: Remove old libopcode ppc disassembler
Capstone should be superior to the old libopcode disassembler, so we can drop the old file nowadays. Message-Id: <20220505173619.488350-1-thuth@redhat.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'disas.c')
-rw-r--r--disas.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/disas.c b/disas.c
index b6f4dc73b2..b2753e1902 100644
--- a/disas.c
+++ b/disas.c
@@ -164,8 +164,6 @@ static void initialize_debug_host(CPUDebug *s)
s->info.cap_insn_unit = 1;
s->info.cap_insn_split = 8;
#elif defined(_ARCH_PPC)
- s->info.disassembler_options = (char *)"any";
- s->info.print_insn = print_insn_ppc;
s->info.cap_arch = CS_ARCH_PPC;
# ifdef _ARCH_PPC64
s->info.cap_mode = CS_MODE_64;