From c1cbb7d8a18374a815b0be38d41ee31748c54d70 Mon Sep 17 00:00:00 2001 From: Max Filippov Date: Tue, 6 Apr 2021 18:44:50 -0700 Subject: [PATCH] opcodes: xtensa: improve literal output Output literals as 4-byte words, not as separate bytes. 2021-04-23 Max Filippov opcodes/ * xtensa-dis.c (print_insn_xtensa): Set info->bytes_per_chunk to 4 for literal disassembly. --- opcodes/ChangeLog | 5 +++++ opcodes/xtensa-dis.c | 1 + 2 files changed, 6 insertions(+) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 477504870a7..c26cddffd60 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2021-04-23 Max Filippov + + * xtensa-dis.c (print_insn_xtensa): Set info->bytes_per_chunk + to 4 for literal disassembly. + 2021-04-19 Przemyslaw Wirkus * aarch64-opc.c: Add new registers (RPAOS, RPALOS, PAALLOS, PAALL) support diff --git a/opcodes/xtensa-dis.c b/opcodes/xtensa-dis.c index 64c9a4ed4e0..e38fc39f4e7 100644 --- a/opcodes/xtensa-dis.c +++ b/opcodes/xtensa-dis.c @@ -381,6 +381,7 @@ print_insn_xtensa (bfd_vma memaddr, struct disassemble_info *info) if (insn_block && (insn_block->flags & XTENSA_PROP_LITERAL) && (memaddr & 3) == 0 && bytes_fetched >= 4) { + info->bytes_per_chunk = 4; return 4; } else -- 2.30.2