* 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.
This commit is contained in:
Ulrich Weigand
2008-09-11 14:29:21 +00:00
parent b806fb9a9b
commit ffe5a37e17
3 changed files with 9 additions and 2 deletions

View File

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