aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2009-01-09 11:09:08 +0000
committerJoel Brobecker <brobecker@gnat.com>2009-01-09 11:09:08 +0000
commite3cb3832093dc26fbd140363d5696f3ea918f238 (patch)
treef1f45ffbdb564dce45ba9eec0622325ebd9f9780
parent30737ed99f1a8fa9877d114c25f6301b9b0cc915 (diff)
downloadgdb-e3cb3832093dc26fbd140363d5696f3ea918f238.zip
gdb-e3cb3832093dc26fbd140363d5696f3ea918f238.tar.gz
gdb-e3cb3832093dc26fbd140363d5696f3ea918f238.tar.bz2
* arch-utils.c (gdbarch_update_p): Use host_address_to_string
to print the address of the gdbarch pointer.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/arch-utils.c8
2 files changed, 9 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 32892ec..949a9fd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2009-01-09 Joel Brobecker <brobecker@adacore.com>
+ * arch-utils.c (gdbarch_update_p): Use host_address_to_string
+ to print the address of the gdbarch pointer.
+
+2009-01-09 Joel Brobecker <brobecker@adacore.com>
+
* gdbarch.sh: Fix all the compilation errors on amd64-windows
due to casting a pointer to a long when printing a function
address. Instead, use host_address_to_string to convert our
diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c
index 41c4933..c1ea9da 100644
--- a/gdb/arch-utils.c
+++ b/gdb/arch-utils.c
@@ -495,8 +495,8 @@ gdbarch_update_p (struct gdbarch_info info)
{
if (gdbarch_debug)
fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: "
- "Architecture 0x%08lx (%s) unchanged\n",
- (long) new_gdbarch,
+ "Architecture %s (%s) unchanged\n",
+ host_address_to_string (new_gdbarch),
gdbarch_bfd_arch_info (new_gdbarch)->printable_name);
return 1;
}
@@ -504,8 +504,8 @@ gdbarch_update_p (struct gdbarch_info info)
/* It's a new architecture, swap it in. */
if (gdbarch_debug)
fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: "
- "New architecture 0x%08lx (%s) selected\n",
- (long) new_gdbarch,
+ "New architecture %s (%s) selected\n",
+ host_address_to_string (new_gdbarch),
gdbarch_bfd_arch_info (new_gdbarch)->printable_name);
deprecated_current_gdbarch_select_hack (new_gdbarch);