diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-13 17:30:01 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-13 17:30:01 +0000 |
commit | 819844ad98d84ef944ff721239ba2b55c2a34061 (patch) | |
tree | e2505e4efb99c7a77e3b6a0e1a3241a9333f71ed /gdb/jv-valprint.c | |
parent | 0cc93a06b3ed13ecf7962515b8af93654874a303 (diff) | |
download | binutils-gdb-819844ad98d84ef944ff721239ba2b55c2a34061.tar.gz |
2007-06-13 Markus Deuling <deuling@de.ibm.com>
* gdbarch.sh (TARGET_PTR_BIT): Replace with gdbarch_ptr_bit.
* solib-svr4.c (svr4_truncate_ptr): Likewise.
* solib-pa64.c (read_dynamic_info): Likewise.
* solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Likewise.
* solib.c (info_sharedlibrary_command): Likewise.
* s390-nat.c (SUBOFF): Likewise.
* p-valprint.c (pascal_val_print): Likewise.
* procfs.c (info_proc_mappings): Likewise.
* printcmd.c (decode_format): Likewise.
* nto-tdep.c (nto_truncate_ptr): Likewise.
* mips-linux-tdep.c (mips_linux_get_longjmp_target)
(mips64_linux_get_longjmp_target): Likewise.
* m68k-tdep.c (m68k_get_longjmp_target): Likewise.
* jv-valprint.c (java_value_print): Likewise.
* jv-lang.c (get_java_object_header_size): Likewise.
* hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Likewise.
* hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code)
(hppa_hpux_unwind_adjust_stub): Likewise.
* gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
* gdbtypes.c (make_pointer_type, make_reference_type)
(smash_to_memberptr_type): Likewise.
* gdbarch.c, gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/jv-valprint.c')
-rw-r--r-- | gdb/jv-valprint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/jv-valprint.c b/gdb/jv-valprint.c index 1a73534c52c..90861621309 100644 --- a/gdb/jv-valprint.c +++ b/gdb/jv-valprint.c @@ -95,7 +95,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format, { gdb_byte *buf; - buf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT); + buf = alloca (gdbarch_ptr_bit (current_gdbarch) / HOST_CHAR_BIT); fputs_filtered (", ", stream); wrap_here (n_spaces (2)); @@ -104,7 +104,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format, else { read_memory (address, buf, sizeof (buf)); - address += TARGET_PTR_BIT / HOST_CHAR_BIT; + address += gdbarch_ptr_bit (current_gdbarch) / HOST_CHAR_BIT; /* FIXME: cagney/2003-05-24: Bogus or what. It pulls a host sized pointer out of the target and then extracts that as an address (while assuming @@ -115,7 +115,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format, for (reps = 1; i + reps < length; reps++) { read_memory (address, buf, sizeof (buf)); - address += TARGET_PTR_BIT / HOST_CHAR_BIT; + address += gdbarch_ptr_bit (current_gdbarch) / HOST_CHAR_BIT; /* FIXME: cagney/2003-05-24: Bogus or what. It pulls a host sized pointer out of the target and then extracts that as an address (while assuming |