public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] sim: d10v: clean up pointer casts
@ 2021-11-01  4:05 Mike Frysinger
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger @ 2021-11-01  4:05 UTC (permalink / raw)
  To: gdb-patches

Use %p to print pointers instead of trying to cast them to longs.
---
 sim/d10v/interp.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sim/d10v/interp.c b/sim/d10v/interp.c
index c48e39a27d6b..228ca3ea6e49 100644
--- a/sim/d10v/interp.c
+++ b/sim/d10v/interp.c
@@ -682,11 +682,11 @@ xfer_mem (SIM_DESC sd,
     {
       sim_io_printf
 	(sd,
-	 "sim_%s %d bytes: 0x%08" PRIxTA " (%s) -> 0x%08lx (%s) -> 0x%08lx (%s)\n",
+	 "sim_%s %d bytes: 0x%08" PRIxTA " (%s) -> 0x%08lx (%s) -> %p (%s)\n",
 	 write_p ? "write" : "read",
 	 phys_size, virt, last_from,
 	 phys, last_to,
-	 (long) memory, last_segname);
+	 memory, last_segname);
     }
 #endif
 
@@ -887,10 +887,10 @@ dmem_addr (SIM_DESC sd, SIM_CPU *cpu, uint16 offset)
     {
       sim_io_printf
 	(sd,
-	 "mem: 0x%08x (%s) -> 0x%08lx %d (%s) -> 0x%08lx (%s)\n",
+	 "mem: 0x%08x (%s) -> 0x%08lx %d (%s) -> %p (%s)\n",
 	 offset, last_from,
 	 phys, phys_size, last_to,
-	 (long) mem, last_segname);
+	 mem, last_segname);
     }
 #endif
   return mem;
@@ -911,10 +911,10 @@ imem_addr (SIM_DESC sd, SIM_CPU *cpu, uint32 offset)
     {
       sim_io_printf
 	(sd,
-	 "mem: 0x%08x (%s) -> 0x%08lx %d (%s) -> 0x%08lx (%s)\n",
+	 "mem: 0x%08x (%s) -> 0x%08lx %d (%s) -> %p (%s)\n",
 	 offset, last_from,
 	 phys, phys_size, last_to,
-	 (long) mem, last_segname);
+	 mem, last_segname);
     }
 #endif
   return mem;
-- 
2.33.0


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

only message in thread, other threads:[~2021-11-01  4:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-01  4:05 [PATCH] sim: d10v: clean up pointer casts Mike Frysinger

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).