aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <xdje42@gmail.com>2015-02-28 12:05:27 -0800
committerDoug Evans <xdje42@gmail.com>2015-02-28 12:05:27 -0800
commitb7236fbee40060bcf5e90740a5c5706317749f91 (patch)
treee2b94ecae1e6775b310d3ce0e62749d75adf7a12
parent9028d9432c57fc0871479960f843ef4af194d5ac (diff)
downloadgdb-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.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/symtab.h3
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 463c57e..47e733a 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2015-02-28 Doug Evans <xdje42@gmail.com>
+
+ * symtab.h (struct symtab) <next>: Fix comment.
+
2015-02-27 Simon Marchi <simon.marchi@ericsson.com>
* python/python.c (python_GdbModuleDef): Rename GdbMethods to
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;