summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2009-01-11 13:23:42 +0000
committerJoel Brobecker <brobecker@gnat.com>2009-01-11 13:23:42 +0000
commit53b715628b0f5957947f03562fa9b7a5f2c85ca4 (patch)
treeced2a639e6f2bf9287f7d9bb5265dbd436806347
parentd076129955bd55521f3793076b7ae77e17e1dea4 (diff)
downloadbinutils-53b715628b0f5957947f03562fa9b7a5f2c85ca4.tar.gz
binutils-53b715628b0f5957947f03562fa9b7a5f2c85ca4.tar.bz2
binutils-53b715628b0f5957947f03562fa9b7a5f2c85ca4.zip
* target.c (target_xfer_partial): Use host_address_to_string to
print the address of readbuf and writebuf. Cast the address of elements inside the myaddr buffer into intptr_t. (deprecated_debug_xfer_memory): Use paddress to print memaddr. Cast the address of elements inside the myaddr buffer into intptr_t.
-rw-r--r--gdb/ChangeLog9
-rw-r--r--gdb/target.c15
2 files changed, 17 insertions, 7 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 17712e4a4ad..78c4fa1461b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,14 @@
2009-10-11 Joel Brobecker <brobecker@adacore.com>
+ * target.c (target_xfer_partial): Use host_address_to_string to
+ print the address of readbuf and writebuf. Cast the address of
+ elements inside the myaddr buffer into intptr_t.
+ (deprecated_debug_xfer_memory): Use paddress to print memaddr.
+ Cast the address of elements inside the myaddr buffer into
+ intptr_t.
+
+2009-10-11 Joel Brobecker <brobecker@adacore.com>
+
* amd64-windows-nat.c, amd64-windows-tdep.c: New files.
* config/i386/mingw64.mh, config/i386/nm-cygwin64.h: New files.
* configure.host, configure.tgt: Add handling for x86_64/windows.
diff --git a/gdb/target.c b/gdb/target.c
index 0f9e42afb6b..78a0a1b0af4 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -1200,11 +1200,12 @@ target_xfer_partial (struct target_ops *ops,
const unsigned char *myaddr = NULL;
fprintf_unfiltered (gdb_stdlog,
- "%s:target_xfer_partial (%d, %s, 0x%lx, 0x%lx, %s, %s) = %s",
+ "%s:target_xfer_partial (%d, %s, %s, %s, %s, %s) = %s",
ops->to_shortname,
(int) object,
(annex ? annex : "(null)"),
- (long) readbuf, (long) writebuf,
+ host_address_to_string (readbuf),
+ host_address_to_string (writebuf),
core_addr_to_string_nz (offset),
plongest (len), plongest (retval));
@@ -1219,7 +1220,7 @@ target_xfer_partial (struct target_ops *ops,
fputs_unfiltered (", bytes =", gdb_stdlog);
for (i = 0; i < retval; i++)
{
- if ((((long) &(myaddr[i])) & 0xf) == 0)
+ if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
{
if (targetdebug < 2 && i > 0)
{
@@ -2717,9 +2718,9 @@ deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
attrib, target);
fprintf_unfiltered (gdb_stdlog,
- "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
- (unsigned int) memaddr, /* possable truncate long long */
- len, write ? "write" : "read", retval);
+ "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
+ paddress (memaddr), len, write ? "write" : "read",
+ retval);
if (retval > 0)
{
@@ -2728,7 +2729,7 @@ deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
fputs_unfiltered (", bytes =", gdb_stdlog);
for (i = 0; i < retval; i++)
{
- if ((((long) &(myaddr[i])) & 0xf) == 0)
+ if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
{
if (targetdebug < 2 && i > 0)
{