This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] symtab.h (struct symtab) <next>: Fix comment.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=b7236fbee40060bcf5e90740a5c5706317749f91

commit b7236fbee40060bcf5e90740a5c5706317749f91
Author: Doug Evans <xdje42@gmail.com>
Date:   Sat Feb 28 12:05:27 2015 -0800

    symtab.h (struct symtab) <next>: Fix comment.
    
    gdb/ChangeLog:
    
    	* symtab.h (struct symtab) <next>: Fix comment.

Diff:
---
 gdb/ChangeLog | 4 ++++
 gdb/symtab.h  | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]