summaryrefslogtreecommitdiffstats
path: root/disas.c
diff options
context:
space:
mode:
authorThomas Huth2022-04-12 18:58:34 +0200
committerThomas Huth2022-05-04 08:47:19 +0200
commit9992f57978b8badb9d95f0eb601c7379f786f76c (patch)
treed6eeba911bada281a7df45ca5f5982c9b37ee018 /disas.c
parenttests/tcg/s390x: Tests for Vector Enhancements Facility 2 (diff)
downloadqemu-9992f57978b8badb9d95f0eb601c7379f786f76c.tar.gz
qemu-9992f57978b8badb9d95f0eb601c7379f786f76c.tar.xz
qemu-9992f57978b8badb9d95f0eb601c7379f786f76c.zip
disas: Remove old libopcode s390 disassembler
Capstone should be superior to the old libopcode disassembler, so we can drop the old file nowadays. Message-Id: <20220412165836.355850-2-thuth@redhat.com> 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.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/disas.c b/disas.c
index 8c16e55c7e..d41f34915d 100644
--- a/disas.c
+++ b/disas.c
@@ -201,7 +201,6 @@ static void initialize_debug_host(CPUDebug *s)
#elif defined(__m68k__)
s->info.print_insn = print_insn_m68k;
#elif defined(__s390__)
- s->info.print_insn = print_insn_s390;
s->info.cap_arch = CS_ARCH_SYSZ;
s->info.cap_insn_unit = 2;
s->info.cap_insn_split = 6;