diff options
author | Doug Evans <dje@google.com> | 2007-11-15 18:43:23 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2007-11-15 18:43:23 +0000 |
commit | 1b39d5c085209598c10bcca5eb503ff7d74f056c (patch) | |
tree | 00968f460cce67502530fc0cb4957a8ae2e072b4 /gdb/symmisc.c | |
parent | 2699bdf21c615d9cdef8e0956c346e33b9cba2a3 (diff) | |
download | gdb-1b39d5c085209598c10bcca5eb503ff7d74f056c.zip gdb-1b39d5c085209598c10bcca5eb503ff7d74f056c.tar.gz gdb-1b39d5c085209598c10bcca5eb503ff7d74f056c.tar.bz2 |
* 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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index f5fe4ab..6b1bea9 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"); } |