X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fd-valprint.c;h=1c2ddae6f6d4281b09269755678a401533e6cd1c;hb=39ec04904ff172dd67fd43ed3720f26d854732bf;hp=34f8b05a62b438d108b4f3b8d8b35d1fe3cd6d84;hpb=1f704f761b34e145f5eabdc222301ce6e9ec9102;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/d-valprint.c b/gdb/d-valprint.c index 34f8b05a62..1c2ddae6f6 100644 --- a/gdb/d-valprint.c +++ b/gdb/d-valprint.c @@ -35,7 +35,7 @@ dynamic_array_type (struct type *type, const struct value_print_options *options) { if (type->num_fields () == 2 - && TYPE_FIELD_TYPE (type, 0)->code () == TYPE_CODE_INT + && type->field (0).type ()->code () == TYPE_CODE_INT && strcmp (TYPE_FIELD_NAME (type, 0), "length") == 0 && strcmp (TYPE_FIELD_NAME (type, 1), "ptr") == 0 && !value_bits_any_optimized_out (val, @@ -52,7 +52,7 @@ dynamic_array_type (struct type *type, length = unpack_field_as_long (type, valaddr + embedded_offset, 0); - ptr_type = TYPE_FIELD_TYPE (type, 1); + ptr_type = type->field (1).type (); elttype = check_typedef (TYPE_TARGET_TYPE (ptr_type)); addr = unpack_pointer (ptr_type, valaddr + TYPE_FIELD_BITPOS (type, 1) / 8