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.h | |
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.h')
-rw-r--r-- | gdb/buildsym.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/buildsym.h b/gdb/buildsym.h index 33b34c8..0db96bf 100644 --- a/gdb/buildsym.h +++ b/gdb/buildsym.h @@ -120,10 +120,6 @@ EXTERN struct pending *global_symbols; EXTERN struct pending *local_symbols; -/* func params local to lexical context */ - -EXTERN struct pending *param_symbols; - /* "using" directives local to lexical context. */ EXTERN struct using_direct *using_directives; @@ -137,10 +133,6 @@ struct context_stack struct pending *locals; - /* Pending func params at the time we entered */ - - struct pending *params; - /* Pending using directives at the time we entered. */ struct using_direct *using_directives; |