public inbox for binutils-cvs@sourceware.org
 help / color / mirror / Atom feed
* [binutils-gdb] RISC-V: Print XTheadMemPair literal as "immediate"
@ 2022-10-06  3:35 Tsukasa OI
  0 siblings, 0 replies; only message in thread
From: Tsukasa OI @ 2022-10-06  3:35 UTC (permalink / raw)
  To: bfd-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=a13886e2198beb78b81c59839043b021ce6df78a

commit a13886e2198beb78b81c59839043b021ce6df78a
Author: Tsukasa OI <research_trasio@irq.a4lg.com>
Date:   Mon Sep 26 10:47:53 2022 +0000

    RISC-V: Print XTheadMemPair literal as "immediate"
    
    The operand type "Xl(...)" denotes that (...) is a literal.  Specifically,
    they are intended to be a constant immediate value.
    
    This commit prints "Xl(...)" operand with dis_style_immediate style,
    not dis_style_text.
    
    opcodes/ChangeLog:
    
            * riscv-dis.c (print_insn_args): Use dis_style_immediate on
            the constant literal of the "Xl..." operand.

Diff:
---
 opcodes/riscv-dis.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opcodes/riscv-dis.c b/opcodes/riscv-dis.c
index 9d733565549..27a6bfe2283 100644
--- a/opcodes/riscv-dis.c
+++ b/opcodes/riscv-dis.c
@@ -578,7 +578,7 @@ print_insn_args (const char *oparg, insn_t l, bfd_vma pc, disassemble_info *info
 		  oparg++;
 		  while (*oparg && *oparg != ',')
 		    {
-		      print (info->stream, dis_style_text, "%c", *oparg);
+		      print (info->stream, dis_style_immediate, "%c", *oparg);
 		      oparg++;
 		    }
 		  oparg--;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-10-06  3:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-06  3:35 [binutils-gdb] RISC-V: Print XTheadMemPair literal as "immediate" Tsukasa OI

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).