diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-20 11:25:20 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-16 08:55:19 -0600 |
commit | 2c722d18f32b1c1f82c7546b1e41edec47d88dce (patch) | |
tree | 5b29aec9b019672008891a0c9b0d3b02bd7f43e4 /gdb/mdebugread.c | |
parent | 5985ac614d7e8ae65faadf62e9302c1c096b5647 (diff) | |
download | binutils-gdb-2c722d18f32b1c1f82c7546b1e41edec47d88dce.tar.gz |
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.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index 98f10b465e5..8b1db999773 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -344,7 +344,7 @@ mdebug_build_psymtabs (minimal_symbol_reader &reader, debug_info = info; stabsread_new_init (); - buildsym_new_init (); + buildsym_init (); free_header_files (); init_header_files (); |