diff options
author | Doug Evans <dje@google.com> | 2013-05-06 16:45:13 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-05-06 16:45:13 +0000 |
commit | ea52d8933d3a7838350aced02a031b64c8ca0168 (patch) | |
tree | 4920d8a4614a16c8030f13fbbc0026960883fca3 /gdb | |
parent | b47468a6dbd1b54c44c2edc0f7db64a073d894ea (diff) | |
download | gdb-ea52d8933d3a7838350aced02a031b64c8ca0168.zip gdb-ea52d8933d3a7838350aced02a031b64c8ca0168.tar.gz gdb-ea52d8933d3a7838350aced02a031b64c8ca0168.tar.bz2 |
* psympriv.h (struct partial_symtab): Augment comment for member
section_offsets.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/psympriv.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1917ff9..0e8820e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-05-06 Doug Evans <dje@google.com> + + * psympriv.h (struct partial_symtab): Augment comment for member + section_offsets. + 2013-05-06 Joel Brobecker <brobecker@adacore.com> Reimplement shared library support on ppc-aix... diff --git a/gdb/psympriv.h b/gdb/psympriv.h index 50e5822..7a62bcc 100644 --- a/gdb/psympriv.h +++ b/gdb/psympriv.h @@ -98,7 +98,9 @@ struct partial_symtab const char *dirname; - /* Set of relocation offsets to apply to each section. */ + /* Set of relocation offsets to apply to each section. + This is typically objfile->section_offsets, but in some cases + it's different. See, e.g., elfstab_offset_sections. */ struct section_offsets *section_offsets; |