diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-11 14:17:24 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-11 14:17:24 +0000 |
commit | d8631d213f802a03c92513bb264b2f4ae65eb259 (patch) | |
tree | 13c27622bdebda8f496bd4c334b88577a15dbc76 /gdb/p-valprint.c | |
parent | cb18ec49971fe854438c21c6fd9bd08672d476e6 (diff) | |
download | gdb-d8631d213f802a03c92513bb264b2f4ae65eb259.zip gdb-d8631d213f802a03c92513bb264b2f4ae65eb259.tar.gz gdb-d8631d213f802a03c92513bb264b2f4ae65eb259.tar.bz2 |
* ada-valprint.c (ada_val_print_1): When implicitly dereferencing
a reference type, pass the reference type directly to unpack_pointer.
* c-valprint.c (c_val_print): Likewise.
* f-valprint.c (f_val_print): Likewise.
* m2-valprint.c (print_variable_at_address, m2_val_print): Likewise.
* p-valprint.c (pascal_val_print): Likewise.
Diffstat (limited to 'gdb/p-valprint.c')
-rw-r--r-- | gdb/p-valprint.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/p-valprint.c b/gdb/p-valprint.c index 23a04da..f76bf56 100644 --- a/gdb/p-valprint.c +++ b/gdb/p-valprint.c @@ -267,8 +267,7 @@ pascal_val_print (struct type *type, const gdb_byte *valaddr, struct value *deref_val = value_at (TYPE_TARGET_TYPE (type), - unpack_pointer (lookup_pointer_type (builtin_type_void), - valaddr + embedded_offset)); + unpack_pointer (type, valaddr + embedded_offset)); common_val_print (deref_val, stream, format, deref_ref, recurse + 1, pretty, current_language); } |