Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* simple typo with cache_ovly_table
@ 2015-10-21 19:47 Mike Stump
  2015-10-21 20:00 ` Simon Marchi
  0 siblings, 1 reply; 3+ messages in thread
From: Mike Stump @ 2015-10-21 19:47 UTC (permalink / raw)
  To: gdb-patches

So our port causes a warning on failure of the types in question to be the same.  This fixes it.  Our CORE_ADDR is 64-bits, our ints are 32-bits.

Could someone shepherd it in?


diff --git a/gdb/symfile.c b/gdb/symfile.c
index f03fca7..e63a1c5 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -3613,7 +3613,7 @@ simple_read_overlay_table (void)
  cache_novlys = read_memory_integer (BMSYMBOL_VALUE_ADDRESS (novlys_msym),
				      4, byte_order);
  cache_ovly_table
-    = (unsigned int (*)[4]) xmalloc (cache_novlys * sizeof (*cache_ovly_table));
+    = (CORE_ADDR (*)[4]) xmalloc (cache_novlys * sizeof (*cache_ovly_table));
  cache_ovly_table_base = BMSYMBOL_VALUE_ADDRESS (ovly_table_msym);
  read_target_long_array (cache_ovly_table_base,
                          (CORE_ADDR *) cache_ovly_table,


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-10-21 19:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-21 19:47 simple typo with cache_ovly_table Mike Stump
2015-10-21 20:00 ` Simon Marchi
2015-10-22  9:59   ` Mike Stump

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox