summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2013-04-24 19:12:26 +0000
committerDoug Evans <dje@google.com>2013-04-24 19:12:26 +0000
commit032553c640bd155aa4fe35b0ff31879a1903f39d (patch)
tree80d3c4c7f86e7f089ba531cbb4a183ea488ec810
parent9969e593c6d5c36472dc999f322510bdf042f241 (diff)
downloadgdb-032553c640bd155aa4fe35b0ff31879a1903f39d.tar.gz
* dwarf2read.c (setup_type_unit_groups): Fix comment.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/dwarf2read.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cd80314fdc0..1510c7dea8b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2013-04-24 Doug Evans <dje@google.com>
+
+ * dwarf2read.c (setup_type_unit_groups): Fix comment.
+
2013-04-22 Keith Seitz <keiths@redhat.com>
* tracepoint.c (trace_save): Call the writer's start method.
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 24b1fe6cb12..3c9972bbfe2 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -8186,7 +8186,7 @@ setup_type_unit_groups (struct die_info *die, struct dwarf2_cu *cu)
attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
/* If we're using .gdb_index (includes -readnow) then
- per_cu->s.type_unit_group may not have been set up yet. */
+ per_cu->type_unit_group may not have been set up yet. */
if (sig_type->type_unit_group == NULL)
sig_type->type_unit_group = get_type_unit_group (cu, attr);
tu_group = sig_type->type_unit_group;