aboutsummaryrefslogtreecommitdiff
path: root/gdb/m2-valprint.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2008-09-11 14:17:24 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2008-09-11 14:17:24 +0000
commitd8631d213f802a03c92513bb264b2f4ae65eb259 (patch)
tree13c27622bdebda8f496bd4c334b88577a15dbc76 /gdb/m2-valprint.c
parentcb18ec49971fe854438c21c6fd9bd08672d476e6 (diff)
downloadfsf-binutils-gdb-d8631d213f802a03c92513bb264b2f4ae65eb259.zip
fsf-binutils-gdb-d8631d213f802a03c92513bb264b2f4ae65eb259.tar.gz
fsf-binutils-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/m2-valprint.c')
-rw-r--r--gdb/m2-valprint.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/gdb/m2-valprint.c b/gdb/m2-valprint.c
index 1258d07..e09ec21 100644
--- a/gdb/m2-valprint.c
+++ b/gdb/m2-valprint.c
@@ -258,10 +258,7 @@ print_variable_at_address (struct type *type,
if (TYPE_CODE (elttype) != TYPE_CODE_UNDEF)
{
struct value *deref_val =
- value_at
- (TYPE_TARGET_TYPE (type),
- unpack_pointer (lookup_pointer_type (builtin_type_void),
- valaddr));
+ value_at (TYPE_TARGET_TYPE (type), unpack_pointer (type, valaddr));
common_val_print (deref_val, stream, format, deref_ref,
recurse, pretty, current_language);
}
@@ -420,8 +417,7 @@ m2_val_print (struct type *type, const gdb_byte *valaddr, int embedded_offset,
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, pretty, current_language);
}