Re: opcodes/arc: Implement style support in the disassembler

* arc-dis.c (print_insn_arc): Fix thinko.
This commit is contained in:
Alan Modra
2022-07-20 12:47:38 +09:30
parent ffd29c9c21
commit 1bc99604e8

View File

@ -1408,7 +1408,7 @@ print_insn_arc (bfd_vma memaddr,
"%s", rname); "%s", rname);
else else
(*info->fprintf_styled_func) (info->stream, dis_style_immediate, (*info->fprintf_styled_func) (info->stream, dis_style_immediate,
"%" PRIx32, value); "%#x", value);
} }
} }