aboutsummaryrefslogtreecommitdiff
path: root/gdb/riscv-tdep.c
diff options
context:
space:
mode:
authorJim Wilson <jimw@sifive.com>2019-10-11 11:26:29 -0700
committerJim Wilson <jimw@sifive.com>2019-10-11 11:26:29 -0700
commita83d4ef693d2bda527c6b73c2580a6fcaf63462c (patch)
treef084f490dc2daa1155148742dcf904550e28228a /gdb/riscv-tdep.c
parente168da45a26f1067cb939a91c5d673b33911023a (diff)
downloadgdb-a83d4ef693d2bda527c6b73c2580a6fcaf63462c.zip
gdb-a83d4ef693d2bda527c6b73c2580a6fcaf63462c.tar.gz
gdb-a83d4ef693d2bda527c6b73c2580a6fcaf63462c.tar.bz2
RISC-V: Fix two ARI warnings.
> gdb/riscv-tdep.c:1657: code: %ll: Do not use printf(%ll), instead use printf(%s,phex()) to dump a 'long long' value gdb/riscv-tdep.c:1657: "Writing %lld-byte nop instruction to %s: %s\n", > gdb/riscv-tdep.c:1658: code: long long: Do not use 'long long', instead use LONGEST gdb/riscv-tdep.c:1658: ((unsigned long long) sizeof (nop_insn)), fprintf_unfiltered doesn't support z (or j for that matter), and fixing that is a larger patch than I'd like to write, so this does basically what the ARI warnings recommends. We don't need the cast as there is a prototype for plongest. * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use plongest instead of unsigned long long cast.
Diffstat (limited to 'gdb/riscv-tdep.c')
-rw-r--r--gdb/riscv-tdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/riscv-tdep.c b/gdb/riscv-tdep.c
index e4a66f1..003b230 100644
--- a/gdb/riscv-tdep.c
+++ b/gdb/riscv-tdep.c
@@ -1654,8 +1654,8 @@ riscv_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp,
if (riscv_debug_breakpoints || riscv_debug_infcall)
fprintf_unfiltered (gdb_stdlog,
- "Writing %lld-byte nop instruction to %s: %s\n",
- ((unsigned long long) sizeof (nop_insn)),
+ "Writing %s-byte nop instruction to %s: %s\n",
+ plongest (sizeof (nop_insn)),
paddress (gdbarch, *bp_addr),
(status == 0 ? "success" : "failed"));