diff options
author | Doug Evans <xdje42@gmail.com> | 2015-02-28 12:05:27 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2015-02-28 12:05:27 -0800 |
commit | b7236fbee40060bcf5e90740a5c5706317749f91 (patch) | |
tree | e2b94ecae1e6775b310d3ce0e62749d75adf7a12 /gdb/symtab.h | |
parent | 9028d9432c57fc0871479960f843ef4af194d5ac (diff) | |
download | gdb-b7236fbee40060bcf5e90740a5c5706317749f91.zip gdb-b7236fbee40060bcf5e90740a5c5706317749f91.tar.gz gdb-b7236fbee40060bcf5e90740a5c5706317749f91.tar.bz2 |
symtab.h (struct symtab) <next>: Fix comment.
gdb/ChangeLog:
* symtab.h (struct symtab) <next>: Fix comment.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index 0eb3a5b..6a0b8da 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -924,7 +924,8 @@ struct section_offsets struct symtab { - /* Unordered chain of all existing symtabs of this objfile. */ + /* Unordered chain of all filetabs in the compunit, with the exception + that the "main" source file is the first entry in the list. */ struct symtab *next; |