aboutsummaryrefslogtreecommitdiff
path: root/target/arm/cpu.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2022-06-03 18:42:49 +0200
committerThomas Huth <thuth@redhat.com>2022-07-05 10:15:49 +0200
commit2116650254117a873ab316038803cef657ae2820 (patch)
tree131f687eb9b5b8b4f586b40eb5ed9bc2a31c2e41 /target/arm/cpu.c
parent886dfe9db39ac9625dfa2da40b50a2e3534b5470 (diff)
disas: Remove libvixl disassembler
The disassembly via capstone should be superiour to our old vixl sources nowadays, so let's finally cut this old disassembler out of the QEMU source tree. Message-Id: <20220603164249.112459-1-thuth@redhat.com> Tested-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'target/arm/cpu.c')
-rw-r--r--target/arm/cpu.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index bb44ad45aa..ae6dca2f01 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -828,13 +828,6 @@ static void arm_disas_set_info(CPUState *cpu, disassemble_info *info)
bool sctlr_b;
if (is_a64(env)) {
- /* We might not be compiled with the A64 disassembler
- * because it needs a C++ compiler. Leave print_insn
- * unset in this case to use the caller default behaviour.
- */
-#if defined(CONFIG_ARM_A64_DIS)
- info->print_insn = print_insn_arm_a64;
-#endif
info->cap_arch = CS_ARCH_ARM64;
info->cap_insn_unit = 4;
info->cap_insn_split = 4;