From 457248a54c9d3dbc3c7f4dc8e184f07ca858640c Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Tue, 12 Apr 2022 18:58:36 +0200 Subject: disas: Remove old libopcode i386 disassembler Capstone should be superior to the old libopcode disassembler, so we can drop the old file nowadays. Signed-off-by: Thomas Huth Reviewed-by: Richard Henderson Message-Id: <20220412165836.355850-4-thuth@redhat.com> Signed-off-by: Thomas Huth --- disas.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'disas.c') diff --git a/disas.c b/disas.c index 4e443b4d49..b6f4dc73b2 100644 --- a/disas.c +++ b/disas.c @@ -153,14 +153,12 @@ static void initialize_debug_host(CPUDebug *s) s->info.print_insn = print_insn_tci; #elif defined(__i386__) s->info.mach = bfd_mach_i386_i386; - s->info.print_insn = print_insn_i386; s->info.cap_arch = CS_ARCH_X86; s->info.cap_mode = CS_MODE_32; s->info.cap_insn_unit = 1; s->info.cap_insn_split = 8; #elif defined(__x86_64__) s->info.mach = bfd_mach_x86_64; - s->info.print_insn = print_insn_i386; s->info.cap_arch = CS_ARCH_X86; s->info.cap_mode = CS_MODE_64; s->info.cap_insn_unit = 1; -- cgit v1.2.3