diff options
author | Tom de Vries <tdevries@suse.de> | 2024-11-24 09:21:28 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2024-11-24 09:21:28 +0100 |
commit | 620651665318e9ac655c7fa189ee297e2bc02e97 (patch) | |
tree | de5edca1e9bc62ab94b74925c52996b5e66b5fbf | |
parent | 3198eb6627e2f48295ccbbdc5bd73d76412882b4 (diff) | |
download | binutils-620651665318e9ac655c7fa189ee297e2bc02e97.zip binutils-620651665318e9ac655c7fa189ee297e2bc02e97.tar.gz binutils-620651665318e9ac655c7fa189ee297e2bc02e97.tar.bz2 |
opcodes: fix Werror=format build breaker in opcodes/riscv-dis.c
I build gdb on arm-linux and ran into:
...
CC riscv-dis.lo
opcodes/riscv-dis.c: In function ‘print_insn_args’:
opcodes/riscv-dis.c:743:29: error: format ‘%lu’ expects argument of type \
‘long unsigned int’, but argument 4 has type ‘insn_t’ \
{aka ‘long long unsigned int’} [-Werror=format=]
743 | "%lu", EXTRACT_ZCMT_INDEX (l));
| ~~^
| |
| long unsigned int
| %llu
...
Fix this by printing the insn_t value, which is a uint64_t, using PRIu64.
Tested by finishing the build.
-rw-r--r-- | opcodes/riscv-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/riscv-dis.c b/opcodes/riscv-dis.c index 101380f..c1212b1 100644 --- a/opcodes/riscv-dis.c +++ b/opcodes/riscv-dis.c @@ -740,7 +740,7 @@ print_insn_args (const char *oparg, insn_t l, bfd_vma pc, disassemble_info *info case 'i': case 'I': print (info->stream, dis_style_address_offset, - "%lu", EXTRACT_ZCMT_INDEX (l)); + "%" PRIu64, EXTRACT_ZCMT_INDEX (l)); break; default: goto undefined_modifier; |