summaryrefslogtreecommitdiffstats
path: root/disas.c
diff options
context:
space:
mode:
authorThomas Huth2022-06-03 18:42:49 +0200
committerThomas Huth2022-07-05 10:15:49 +0200
commit2116650254117a873ab316038803cef657ae2820 (patch)
tree131f687eb9b5b8b4f586b40eb5ed9bc2a31c2e41 /disas.c
parenttests: use consistent bandwidth/downtime limits in migration tests (diff)
downloadqemu-2116650254117a873ab316038803cef657ae2820.tar.gz
qemu-2116650254117a873ab316038803cef657ae2820.tar.xz
qemu-2116650254117a873ab316038803cef657ae2820.zip
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 'disas.c')
-rw-r--r--disas.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/disas.c b/disas.c
index b2753e1902..e31438f349 100644
--- a/disas.c
+++ b/disas.c
@@ -178,9 +178,6 @@ static void initialize_debug_host(CPUDebug *s)
#endif
#elif defined(__aarch64__)
s->info.cap_arch = CS_ARCH_ARM64;
-# ifdef CONFIG_ARM_A64_DIS
- s->info.print_insn = print_insn_arm_a64;
-# endif
#elif defined(__alpha__)
s->info.print_insn = print_insn_alpha;
#elif defined(__sparc__)