diff options
author | Tom Tromey <tom@tromey.com> | 2018-04-17 13:51:25 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-06-01 10:19:55 -0600 |
commit | a737d952e0a9122dd0d439ba2a2ca531b070e6bd (patch) | |
tree | 4f66288bcc3df4301cd70a73b73d47518e39e224 /gdb/dwarf2read.c | |
parent | e86ca25fd6cc06488c9dda936cf83f0fcdf6b58b (diff) | |
download | gdb-a737d952e0a9122dd0d439ba2a2ca531b070e6bd.zip gdb-a737d952e0a9122dd0d439ba2a2ca531b070e6bd.tar.gz gdb-a737d952e0a9122dd0d439ba2a2ca531b070e6bd.tar.bz2 |
Remove type_name_no_tag and rename type_name_no_tag_or_error
type_name_no_tag is just a plain wrapper for TYPE_NAME now, so this
patch removes it. And, because tag names no longer exist, this
renames type_name_no_tag_or_error to type_name_or_error.
gdb/ChangeLog
2018-06-01 Tom Tromey <tom@tromey.com>
* valops.c (value_cast_structs, destructor_name_p): Update.
* symtab.c (gdb_mangle_name): Update.
* stabsread.c (define_symbol, read_cpp_abbrev, read_baseclasses):
Update.
* p-valprint.c (pascal_object_is_vtbl_ptr_type)
(pascal_object_print_value_fields, pascal_object_print_value):
Update.
* p-typeprint.c (pascal_type_print_derivation_info): Update.
* linespec.c (find_methods): Update.
* gdbtypes.h (type_name_no_tag): Remove.
(type_name_or_error): Rename from type_name_no_tag_or_error.
* gdbtypes.c (type_name_no_tag): Remove.
(type_name_or_error): Rename from type_name_no_tag_or_error.
(lookup_struct_elt_type, check_typedef): Update.
* expprint.c (print_subexp_standard): Update.
* dwarf2read.c (dwarf2_add_field, load_partial_dies): Update.
* d-namespace.c (d_lookup_nested_symbol): Update.
* cp-valprint.c (cp_is_vtbl_ptr_type, cp_print_value_fields)
(cp_print_class_member): Update.
* cp-namespace.c (cp_lookup_nested_symbol): Update.
* completer.c (add_struct_fields): Update.
* c-typeprint.c (cp_type_print_derivation_info)
(c_type_print_varspec_prefix, c_type_print_base_struct_union):
Update.
* ada-lang.c (parse_old_style_renaming, xget_renaming_scope)
(ada_prefer_type, ada_is_exception_sym): Update.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index b8e681b..1cabfbb 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -15034,7 +15034,7 @@ dwarf2_add_field (struct field_info *fip, struct die_info *die, SET_FIELD_BITPOS (*fp, offset * bits_per_byte); FIELD_BITSIZE (*fp) = 0; FIELD_TYPE (*fp) = die_type (die, cu); - FIELD_NAME (*fp) = type_name_no_tag (fp->type); + FIELD_NAME (*fp) = TYPE_NAME (fp->type); } else if (die->tag == DW_TAG_variant_part) { @@ -18224,7 +18224,7 @@ load_partial_dies (const struct die_reader_specs *reader, /* The exception for DW_TAG_typedef with has_children above is a workaround of GCC PR debug/47510. In the case of this complaint - type_name_no_tag_or_error will error on such types later. + type_name_or_error will error on such types later. GDB skipped children of DW_TAG_typedef by the shortcut above and then it could not find the child DIEs referenced later, this is checked |