summaryrefslogtreecommitdiff
path: root/gdb/symtab.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2008-05-22 16:58:02 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2008-05-22 16:58:02 +0000
commitfecd505ffd4575631b402828516f15b74438b8ae (patch)
tree2901bef8e6f7e73610cf75da365c5e06d74061c0 /gdb/symtab.c
parente7e3ab552f254f79ad6f7196eeaf74957ac0a796 (diff)
downloadgdb-fecd505ffd4575631b402828516f15b74438b8ae.tar.gz
* 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.c')
-rw-r--r--gdb/symtab.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c
index 4e2b2a5043e..d4f3bfe3040 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -1116,7 +1116,6 @@ fixup_symbol_section (struct symbol *sym, struct objfile *objfile)
{
case LOC_STATIC:
case LOC_LABEL:
- case LOC_INDIRECT:
addr = SYMBOL_VALUE_ADDRESS (sym);
break;
case LOC_BLOCK:
@@ -1151,7 +1150,6 @@ fixup_psymbol_section (struct partial_symbol *psym, struct objfile *objfile)
{
case LOC_STATIC:
case LOC_LABEL:
- case LOC_INDIRECT:
case LOC_BLOCK:
addr = SYMBOL_VALUE_ADDRESS (psym);
break;