diff options
author | Thomas Huth <thuth@redhat.com> | 2022-05-05 19:36:19 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-05-09 08:21:05 +0200 |
commit | 333f944c15e7a6f5503f92d80529a368519d6638 (patch) | |
tree | aa659a82a4c2d8d7d9cf2843d13fc10808e83f5b /target/ppc/cpu_init.c | |
parent | 457248a54c9d3dbc3c7f4dc8e184f07ca858640c (diff) | |
download | qemu-333f944c15e7a6f5503f92d80529a368519d6638.zip qemu-333f944c15e7a6f5503f92d80529a368519d6638.tar.gz qemu-333f944c15e7a6f5503f92d80529a368519d6638.tar.bz2 |
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 'target/ppc/cpu_init.c')
-rw-r--r-- | target/ppc/cpu_init.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/ppc/cpu_init.c b/target/ppc/cpu_init.c index d4c7813..527ad40 100644 --- a/target/ppc/cpu_init.c +++ b/target/ppc/cpu_init.c @@ -7309,8 +7309,6 @@ static void ppc_disas_set_info(CPUState *cs, disassemble_info *info) info->mach = bfd_mach_ppc; #endif } - info->disassembler_options = (char *)"any"; - info->print_insn = print_insn_ppc; info->cap_arch = CS_ARCH_PPC; #ifdef TARGET_PPC64 |