diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-05-22 16:58:02 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-05-22 16:58:02 +0000 |
commit | 0bb4e8c4ad45e09c354fdb57d18d5c1602900a63 (patch) | |
tree | ed419407270a02240f7b71592601c236eef5973c /gdb/symtab.h | |
parent | 103a86713589f2ed97b20281a3f16e47b0f3e270 (diff) | |
download | fsf-binutils-gdb-0bb4e8c4ad45e09c354fdb57d18d5c1602900a63.zip fsf-binutils-gdb-0bb4e8c4ad45e09c354fdb57d18d5c1602900a63.tar.gz fsf-binutils-gdb-0bb4e8c4ad45e09c354fdb57d18d5c1602900a63.tar.bz2 |
* symtab.h (enum address_class): Remove LOC_INDIRECT and
LOC_HP_THREAD_LOCAL_STATIC.
* findvar.c (symbol_read_needs_frame, read_var_value): Do not
handle LOC_INDIRECT or LOC_HP_THREAD_LOCAL_STATIC.
(read_var_value): Likewise.
* buildsym.c (finish_block): Likewise.
* objfiles.c (objfile_relocate): Likewise.
* printcmd.c (address_info): Likewise.
* symmisc.c (print_symbol, print_partial_symbols): Likewise.
* tracepoint.c (scope_info): Likewise.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index 3bbc393..3b4350a 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -524,26 +524,11 @@ enum address_class LOC_UNRESOLVED, - /* Value is at a thread-specific location calculated by a - target-specific method. This is used only by hppa. */ - - LOC_HP_THREAD_LOCAL_STATIC, - /* The variable does not actually exist in the program. The value is ignored. */ LOC_OPTIMIZED_OUT, - /* The variable is static, but actually lives at * (address). - * I.e. do an extra indirection to get to it. - * This is used on HP-UX to get at globals that are allocated - * in shared libraries, where references from images other - * than the one where the global was allocated are done - * with a level of indirection. - */ - - LOC_INDIRECT, - /* The variable's address is computed by a set of location functions (see "struct symbol_ops" below). */ LOC_COMPUTED, |