aboutsummaryrefslogtreecommitdiff
path: root/gdb/value.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/value.c')
-rw-r--r--gdb/value.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/value.c b/gdb/value.c
index 1be1845..ce4b13a 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -1082,12 +1082,13 @@ value_entirely_optimized_out (const struct value *value)
int
value_bits_valid (const struct value *value, int offset, int length)
{
+ if (!value->optimized_out)
+ return 1;
if (value->lval != lval_computed
|| !value->location.computed.funcs->check_validity)
- return !value->optimized_out;
- else
- return value->location.computed.funcs->check_validity (value, offset,
- length);
+ return 0;
+ return value->location.computed.funcs->check_validity (value, offset,
+ length);
}
int