mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
* symmisc.c (maintenance_info_symtabs): Print linetable info.
* doc/gdb.texinfo (Symbols): Update output of "maint info symtabs".
This commit is contained in:
@ -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
|
||||
|
@ -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
|
||||
|
@ -11174,6 +11174,7 @@ line 1574.
|
||||
dirname (null)
|
||||
fullname (null)
|
||||
blockvector ((struct blockvector *) 0x86c1bd0) (primary)
|
||||
linetable ((struct linetable *) 0x8370fa0)
|
||||
debugformat DWARF 2
|
||||
@}
|
||||
@}
|
||||
|
@ -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");
|
||||
}
|
||||
|
Reference in New Issue
Block a user