diff options
Diffstat (limited to 'gdb/c-valprint.c')
-rw-r--r-- | gdb/c-valprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/c-valprint.c b/gdb/c-valprint.c index 9c82869..d3071d1 100644 --- a/gdb/c-valprint.c +++ b/gdb/c-valprint.c @@ -486,7 +486,7 @@ c_value_print (struct value *val, struct ui_file *stream, type = check_typedef (value_type (val)); - if (type->code () == TYPE_CODE_PTR || TYPE_IS_REFERENCE (type)) + if (type->is_pointer_or_reference ()) { struct type *original_type = value_type (val); |