* symmisc.c (maintenance_info_symtabs): Print linetable info.

* doc/gdb.texinfo (Symbols): Update output of "maint info symtabs".
This commit is contained in:
Doug Evans 2007-11-15 18:43:23 +00:00
parent 2699bdf21c
commit 1b39d5c085
4 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2007-11-15 Doug Evans <dje@google.com>
* symmisc.c (maintenance_info_symtabs): Print linetable info.
2007-11-15 Markus Deuling <deuling@de.ibm.com>
* mipsnbsd-tdep.h (SIZEOF_STRUCT_REG, SIZEOF_STRUCT_FPREG): Remove

View file

@ -1,3 +1,7 @@
2007-11-15 Doug Evans <dje@google.com>
* gdb.texinfo (Symbols): Update output of "maint info symtabs".
2007-11-15 Vladimir Prus <vladimir@codesourcery.com>
* gdbint.texinfo (Native Conditionals): Remove

View file

@ -11174,6 +11174,7 @@ line 1574.
dirname (null)
fullname (null)
blockvector ((struct blockvector *) 0x86c1bd0) (primary)
linetable ((struct linetable *) 0x8370fa0)
debugformat DWARF 2
@}
@}

View file

@ -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");
}