aboutsummaryrefslogtreecommitdiff
path: root/gdb/auxv.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2008-09-11 14:29:21 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2008-09-11 14:29:21 +0000
commitffe5a37e17da959d4c4e43b33f23b9548ac6fb27 (patch)
tree481e9ea652fd6ad05a0f9e4cb6826e1baec39d33 /gdb/auxv.c
parentb806fb9a9bd4e0e47382c411d6e9321d1283445b (diff)
downloadgdb-ffe5a37e17da959d4c4e43b33f23b9548ac6fb27.zip
gdb-ffe5a37e17da959d4c4e43b33f23b9548ac6fb27.tar.gz
gdb-ffe5a37e17da959d4c4e43b33f23b9548ac6fb27.tar.bz2
* auxv.c (default_auxv_parse): Use gdbarch_ptr_bit (target_gdbarch)
instead of builtin_type_void_data_ptr. * target.c (default_region_ok_for_hw_watchpoint): Likewise.
Diffstat (limited to 'gdb/auxv.c')
-rw-r--r--gdb/auxv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/auxv.c b/gdb/auxv.c
index 0baec1a..afc7fdd 100644
--- a/gdb/auxv.c
+++ b/gdb/auxv.c
@@ -82,7 +82,8 @@ int
default_auxv_parse (struct target_ops *ops, gdb_byte **readptr,
gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
{
- const int sizeof_auxv_field = TYPE_LENGTH (builtin_type_void_data_ptr);
+ const int sizeof_auxv_field = gdbarch_ptr_bit (target_gdbarch)
+ / TARGET_CHAR_BIT;
gdb_byte *ptr = *readptr;
if (endptr == ptr)