diff options
author | Tom Tromey <tom@tromey.com> | 2019-05-03 17:21:36 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-05-03 18:06:37 -0600 |
commit | bde09ab7026edf3d79122872b79c6a8f164ee0ff (patch) | |
tree | 91a38f83fae1479191910c9ed6393c5c9076b6a0 /gdb/dwarf2read.c | |
parent | b5d5eb444b6443855d65f73ea6b6623f5fbdaa0e (diff) | |
download | gdb-bde09ab7026edf3d79122872b79c6a8f164ee0ff.zip gdb-bde09ab7026edf3d79122872b79c6a8f164ee0ff.tar.gz gdb-bde09ab7026edf3d79122872b79c6a8f164ee0ff.tar.bz2 |
Remove "struct" from foreach statements
Some versions of gcc have a bug that causes
for (struct mumble : something)
... to give a compiler error. We routinely work around this bug in
gdb, but apparently had not done so in a while. This patch fixes the
remaining known cases of this problem.
gdb/ChangeLog
2019-05-03 Sandra Loosemore <sandra@codesourcery.com>
Tom Tromey <tom@tromey.com>
* dictionary.c (collate_pending_symbols_by_language): Remove
"struct" from foreach.
* symtab.c (lookup_global_symbol_from_objfile)
(lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
foreach.
* ser-tcp.c (net_open): Remove "struct" from foreach.
* objfiles.c (objfile_relocate, objfile_rebase)
(objfile_has_symbols): Remove "struct" from foreach.
* minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
from foreach.
* dwarf2read.c (handle_struct_member_die): Remove "struct" from
foreach.
* darwin-nat.c (thread_info_from_private_thread_info): Remove
"struct" from foreach.
* ada-lang.c (create_excep_cond_exprs)
(ada_exception_catchpoint_cond_string): Remove "struct" from
foreach.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index b0bdecf..b5ea9e3 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -15962,7 +15962,7 @@ handle_struct_member_die (struct die_info *child_die, struct type *type, field for our sole member child. */ struct attribute *discr = dwarf2_attr (child_die, DW_AT_discr_value, cu); - for (struct die_info *variant_child = child_die->child; + for (die_info *variant_child = child_die->child; variant_child != NULL; variant_child = sibling_die (variant_child)) { |