diff options
author | Doug Evans <dje@google.com> | 2013-04-24 19:12:26 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-04-24 19:12:26 +0000 |
commit | 74e04d1ccfc72c023f2c960cb13cb7a605a637ff (patch) | |
tree | ef90d7ade5d7181bc95bbd93cab089d7808f743f | |
parent | 05567e3d0b0f3d8811997497aca9cde51100c9ec (diff) | |
download | gdb-74e04d1ccfc72c023f2c960cb13cb7a605a637ff.zip gdb-74e04d1ccfc72c023f2c960cb13cb7a605a637ff.tar.gz gdb-74e04d1ccfc72c023f2c960cb13cb7a605a637ff.tar.bz2 |
* dwarf2read.c (setup_type_unit_groups): Fix comment.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/dwarf2read.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cd80314..1510c7d 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 24b1fe6..3c9972b 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; |