RISC-V: Fix two ARI warnings.
authorJim Wilson <jimw@sifive.com>
Fri, 11 Oct 2019 18:26:29 +0000 (11:26 -0700)
committerJim Wilson <jimw@sifive.com>
Fri, 11 Oct 2019 18:26:29 +0000 (11:26 -0700)
> 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.

gdb/ChangeLog
gdb/riscv-tdep.c

index fba57f3469bdc42dd5fb2812b79140d402679226..3c1f87b32d2ca4842595b185b145909223ffd1c8 100644 (file)
@@ -1,3 +1,8 @@
+2019-10-11  Jim Wilson  <jimw@sifive.com>
+
+       * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
+       plongest instead of unsigned long long cast.
+
 2019-10-10  Christian Biesinger  <cbiesinger@google.com>
 
        * main.c (captured_main_1): Include gdbtk.h and remove declarations
index e4a66f142937e3e3c7f32e14ae8c60f81902da0b..003b230fcf6415ff8afd04ddd36a927ee06103f2 100644 (file)
@@ -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"));