summaryrefslogtreecommitdiff
path: root/gdb/findvar.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2011-07-12 21:16:46 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2011-07-12 21:16:46 +0000
commitacfe85f56075910a3ba5e8b76189e0770079b8d1 (patch)
treebfc02b196563963162a3cb2e13c5eda03ad53a0b /gdb/findvar.c
parent1240d00ef2092028f3d3811ae4fb9295edaa7e30 (diff)
downloadgdb-acfe85f56075910a3ba5e8b76189e0770079b8d1.tar.gz
gdb/
Code cleanup making also optimized out values lazy. * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_optimized_out_value. Twice. (loclist_read_variable) Use allocate_optimized_out_value. Once. * findvar.c (read_var_value): Likewise. * value.c (allocate_optimized_out_value): New function. * value.h (allocate_optimized_out_value): New declaration.
Diffstat (limited to 'gdb/findvar.c')
-rw-r--r--gdb/findvar.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/findvar.c b/gdb/findvar.c
index 2b361efeda3..a700c0283a1 100644
--- a/gdb/findvar.c
+++ b/gdb/findvar.c
@@ -577,10 +577,7 @@ read_var_value (struct symbol *var, struct frame_info *frame)
break;
case LOC_OPTIMIZED_OUT:
- v = allocate_value_lazy (type);
- VALUE_LVAL (v) = not_lval;
- set_value_optimized_out (v, 1);
- return v;
+ return allocate_optimized_out_value (type);
default:
error (_("Cannot look up value of a botched symbol."));