diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-21 00:41:21 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-20 09:42:44 -0600 |
commit | c233e9c641a84e69603bd94d0e85050c361b64a6 (patch) | |
tree | a5e28ff8624acf305258816c76499667e56f463e /gdb/buildsym.h | |
parent | 5ac045503de7dde6793b318f89d251addc161f66 (diff) | |
download | gdb-c233e9c641a84e69603bd94d0e85050c361b64a6.zip gdb-c233e9c641a84e69603bd94d0e85050c361b64a6.tar.gz gdb-c233e9c641a84e69603bd94d0e85050c361b64a6.tar.bz2 |
Remove the "listhead" argument from finish_block
finish_block is only ever called with "&local_symbols" as the
"listhead" argument. So, remove this argument.
gdb/ChangeLog
2018-07-20 Tom Tromey <tom@tromey.com>
* xcoffread.c (read_xcoff_symtab): Update.
* dwarf2read.c (read_func_scope, read_lexical_block_scope):
Update.
* dbxread.c (process_one_symbol): Update.
* coffread.c (coff_symtab_read): Update.
* buildsym.h (finish_block): Update.
* buildsym.c (finish_block): Remove "listhead" argument.
(end_symtab_get_static_block): Update.
Diffstat (limited to 'gdb/buildsym.h')
-rw-r--r-- | gdb/buildsym.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/buildsym.h b/gdb/buildsym.h index e0668f8..10dce3e 100644 --- a/gdb/buildsym.h +++ b/gdb/buildsym.h @@ -144,7 +144,6 @@ extern struct symbol *find_symbol_in_list (struct pending *list, char *name, int length); extern struct block *finish_block (struct symbol *symbol, - struct pending **listhead, struct pending_block *old_blocks, const struct dynamic_prop *static_link, CORE_ADDR start, |