From 361d5395df9d175c3a1eb0c5f8cb60daa93000a4 Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Tue, 11 Apr 2023 21:27:26 +0300 Subject: [PATCH] ppc/svp64: disassemble SVP64 name --- opcodes/ppc-dis.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index 42220420957..b9431bbe204 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -963,9 +963,11 @@ print_insn_powerpc_opcode (struct disassemble_info *info, int blanks; (*info->fprintf_styled_func) (info->stream, dis_style_mnemonic, - "%s", opcode->name); + "%s%s", + (svp64 ? "sv." : ""), + opcode->name); /* gdb fprintf_styled_func doesn't return count printed. */ - blanks = 8 - strlen (opcode->name); + blanks = (8 - (int)strlen (opcode->name) - (svp64 ? 3 : 2)); if (blanks <= 0) blanks = 1; -- 2.30.2