diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-05-22 17:00:07 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-05-22 17:00:07 +0000 |
commit | c3b22bd09c9ba99146f0dad3aac73e170cf051d6 (patch) | |
tree | b9a82831974af1d067e1d6a835c895337950e21c /gdb/buildsym.c | |
parent | aa59ba6b2707e2912437f780ffad25a897153f95 (diff) | |
download | gdb-c3b22bd09c9ba99146f0dad3aac73e170cf051d6.zip gdb-c3b22bd09c9ba99146f0dad3aac73e170cf051d6.tar.gz gdb-c3b22bd09c9ba99146f0dad3aac73e170cf051d6.tar.bz2 |
* symtab.h (enum address_class): Remove LOC_BASEREG and
LOC_BASEREG_ARG.
(struct symbol): Remove "basereg" member of "aux_value" union.
(SYMBOL_BASEREG): Remove.
* ada-exp.y (select_possible_type_sym): Do not handle LOC_BASEREG
or LOC_BASEREG_ARG.
* ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
(ada_add_block_symbols): Likewise.
* ax-gdb.c (gen_var_ref): Likewise.
* buildsym.c (finish_block): Likewise.
* findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
* m2-exp.y (yylex): Likewise.
* mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
* printcmd.c (address_info): Likewise.
* stack.c (print_frame_args, print_block_frame_locals): Likewise.
(print_frame_arg_vars): Likewise.
* symmisc.c (print_symbol): Likewise.
* symtab.c (lookup_block_symbol): Likewise.
* tracepoint.c (collect_symbol, add_local_symbols): Likewise.
(scope_info): Likewise.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index 2171457..034c862 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -289,7 +289,6 @@ finish_block (struct symbol *symbol, struct pending **listhead, case LOC_REF_ARG: case LOC_REGPARM: case LOC_REGPARM_ADDR: - case LOC_BASEREG_ARG: case LOC_COMPUTED_ARG: nparams++; break; @@ -302,7 +301,6 @@ finish_block (struct symbol *symbol, struct pending **listhead, case LOC_LABEL: case LOC_BLOCK: case LOC_CONST_BYTES: - case LOC_BASEREG: case LOC_UNRESOLVED: case LOC_OPTIMIZED_OUT: case LOC_COMPUTED: @@ -328,7 +326,6 @@ finish_block (struct symbol *symbol, struct pending **listhead, case LOC_REF_ARG: case LOC_REGPARM: case LOC_REGPARM_ADDR: - case LOC_BASEREG_ARG: case LOC_COMPUTED_ARG: TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym); TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0; @@ -343,7 +340,6 @@ finish_block (struct symbol *symbol, struct pending **listhead, case LOC_LABEL: case LOC_BLOCK: case LOC_CONST_BYTES: - case LOC_BASEREG: case LOC_UNRESOLVED: case LOC_OPTIMIZED_OUT: case LOC_COMPUTED: |