summaryrefslogtreecommitdiff
path: root/gdb/symmisc.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2007-11-15 18:43:23 +0000
committerDoug Evans <dje@google.com>2007-11-15 18:43:23 +0000
commitcbdaf2073088a1f81d8401e116573a1bbc030b11 (patch)
tree21436599d293d652af0ffeb99b31540d5dd49933 /gdb/symmisc.c
parent157e91171c33d1ba03e1dd8b6de70efbd69079f0 (diff)
downloadgdb-cbdaf2073088a1f81d8401e116573a1bbc030b11.tar.gz
* symmisc.c (maintenance_info_symtabs): Print linetable info.
* doc/gdb.texinfo (Symbols): Update output of "maint info symtabs".
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r--gdb/symmisc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c
index f5fe4abc2ef..6b1bea90818 100644
--- a/gdb/symmisc.c
+++ b/gdb/symmisc.c
@@ -1039,6 +1039,8 @@ maintenance_info_symtabs (char *regexp, int from_tty)
printf_filtered (" blockvector ((struct blockvector *) %p)%s\n",
symtab->blockvector,
symtab->primary ? " (primary)" : "");
+ printf_filtered (" linetable ((struct linetable *) %p)\n",
+ symtab->linetable);
printf_filtered (" debugformat %s\n", symtab->debugformat);
printf_filtered (" }\n");
}