mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-02 04:27:46 +08:00
Remove buildsym_new_init
buildsym_new_init is just an alias for buildsym_init. This removes it. In the long run buildsym_init will also go away; this patch just helps make things a bit clearer in the meantime. gdb/ChangeLog 2018-07-16 Tom Tromey <tom@tromey.com> * xcoffread.c (xcoff_new_init): Update. * mipsread.c (mipscoff_new_init): Update. * mdebugread.c (mdebug_build_psymtabs): Update. * elfread.c (elf_new_init): Update. * dbxread.c (dbx_new_init, coffstab_build_psymtabs) (elfstab_build_psymtabs, stabsect_build_psymtabs): Update. * buildsym.h (buildsym_new_init): Don't declare. * buildsym.c (buildsym_new_init): Remove.
This commit is contained in:
@ -1751,7 +1751,7 @@ get_last_source_start_addr ()
|
||||
corresponding to a psymtab. */
|
||||
|
||||
void
|
||||
buildsym_init (void)
|
||||
buildsym_init ()
|
||||
{
|
||||
subfile_stack = NULL;
|
||||
|
||||
@ -1775,13 +1775,3 @@ buildsym_init (void)
|
||||
gdb_assert (pending_addrmap == NULL);
|
||||
gdb_assert (buildsym_compunit == NULL);
|
||||
}
|
||||
|
||||
/* Initialize anything that needs initializing when a completely new
|
||||
symbol file is specified (not just adding some symbols from another
|
||||
file, e.g. a shared library). */
|
||||
|
||||
void
|
||||
buildsym_new_init (void)
|
||||
{
|
||||
buildsym_init ();
|
||||
}
|
||||
|
Reference in New Issue
Block a user