From 887e4ed6e886e098a514222d5a132ae6da674329 Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Mon, 29 May 2023 01:04:57 +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 9cdc7e359f5..a19b2a84061 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -974,9 +974,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