diff options
author | Thomas Huth <thuth@redhat.com> | 2022-04-12 18:58:36 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-05-09 08:21:05 +0200 |
commit | 457248a54c9d3dbc3c7f4dc8e184f07ca858640c (patch) | |
tree | 4c30c2cbe12b85185fc14eb48734800d4fa70cac /target/i386 | |
parent | 82f96346e1fc8eb81eb8e80fe0b95405a8cf42ee (diff) | |
download | qemu-457248a54c9d3dbc3c7f4dc8e184f07ca858640c.zip qemu-457248a54c9d3dbc3c7f4dc8e184f07ca858640c.tar.gz qemu-457248a54c9d3dbc3c7f4dc8e184f07ca858640c.tar.bz2 |
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 <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220412165836.355850-4-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'target/i386')
-rw-r--r-- | target/i386/cpu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/i386/cpu.c b/target/i386/cpu.c index 99343be..62c240f 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -6821,7 +6821,6 @@ static void x86_disas_set_info(CPUState *cs, disassemble_info *info) info->mach = (env->hflags & HF_CS64_MASK ? bfd_mach_x86_64 : env->hflags & HF_CS32_MASK ? bfd_mach_i386_i386 : bfd_mach_i386_i8086); - info->print_insn = print_insn_i386; info->cap_arch = CS_ARCH_X86; info->cap_mode = (env->hflags & HF_CS64_MASK ? CS_MODE_64 |