aboutsummaryrefslogtreecommitdiff
path: root/gdb/value.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/value.c')
-rw-r--r--gdb/value.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/value.c b/gdb/value.c
index 64ac563..edcd4d0 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -521,7 +521,7 @@ value_entirely_optimized_out (const struct value *value)
if (value->lval != lval_computed
|| !value->location.computed.funcs->check_validity)
return 1;
- return value->location.computed.funcs->check_all_valid (value);
+ return !value->location.computed.funcs->check_any_valid (value);
}
int