]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
tweak some comments
authorDoug Evans <dje@google.com>
Tue, 12 May 2015 17:42:49 +0000 (10:42 -0700)
committerDoug Evans <dje@google.com>
Tue, 12 May 2015 17:42:49 +0000 (10:42 -0700)
gdb/ChangeLog:

* dwarf2read.c (struct file_entry): Tweak comments.
(get_debug_line_section): Tweak comments.

gdb/ChangeLog
gdb/dwarf2read.c

index a316b4ecec2a727474400cd61e7a3c1262743445..61bc846c5ad961b5fd9f33aeadd277f8dfdcabf0 100644 (file)
@@ -1,3 +1,8 @@
+2015-05-12  Doug Evans  <dje@google.com>
+
+       * dwarf2read.c (struct file_entry): Tweak comments.
+       (get_debug_line_section): Tweak comments.
+
 2015-05-12  Don Breazeal  <donb@codesourcery.com>
 
        * NEWS: Announce fork support in the RSP and support
index 23a252121a2be686803deb5c38b9723c72570316..9a2113eeb9c6d8eb0934b7a688b556201c84aef3 100644 (file)
@@ -1030,8 +1030,10 @@ struct file_entry
   unsigned int dir_index;
   unsigned int mod_time;
   unsigned int length;
-  int included_p; /* Non-zero if referenced by the Line Number Program.  */
-  struct symtab *symtab; /* The associated symbol table, if any.  */
+  /* Non-zero if referenced by the Line Number Program.  */
+  int included_p;
+  /* The associated symbol table, if any.  */
+  struct symtab *symtab;
 };
 
 /* The line number information for a compilation unit (found in the
@@ -17200,8 +17202,7 @@ add_file_name (struct line_header *lh,
   fe->symtab = NULL;
 }
 
-/* A convenience function to find the proper .debug_line section for a
-   CU.  */
+/* A convenience function to find the proper .debug_line section for a CU.  */
 
 static struct dwarf2_section_info *
 get_debug_line_section (struct dwarf2_cu *cu)