diff options
author | Doug Evans <dje@google.com> | 2012-09-19 20:06:47 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2012-09-19 20:06:47 +0000 |
commit | 43c7c83dacecdb9a2796e4eed6f891ce3f8c3654 (patch) | |
tree | 2100b19f98b6a4b26e39194e55b4b41cc828309e /gdb/buildsym.c | |
parent | a6521d9a4be74bb6f57e25d5a237cfc1a01f13bf (diff) | |
download | gdb-43c7c83dacecdb9a2796e4eed6f891ce3f8c3654.zip gdb-43c7c83dacecdb9a2796e4eed6f891ce3f8c3654.tar.gz gdb-43c7c83dacecdb9a2796e4eed6f891ce3f8c3654.tar.bz2 |
* buildsym.h (param_symbols): Delete, unused.
(context_stack): Delete member "params", unused.
* buildsym.c (push_context): Update.
* dwarf2read.c (read_func_scope): Update.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index e4882fb..1ce40b9 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -1404,14 +1404,12 @@ push_context (int desc, CORE_ADDR valu) new = &context_stack[context_stack_depth++]; new->depth = desc; new->locals = local_symbols; - new->params = param_symbols; new->old_blocks = pending_blocks; new->start_addr = valu; new->using_directives = using_directives; new->name = NULL; local_symbols = NULL; - param_symbols = NULL; using_directives = NULL; return new; |