mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
* value.c (value_bits_valid, value_bits_synthetic_pointer):
No longer handle NULL values.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2011-02-14 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* value.c (value_bits_valid, value_bits_synthetic_pointer):
|
||||
No longer handle NULL values.
|
||||
|
||||
2011-02-14 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* exceptions.h (NOT_AVAILABLE_ERROR): New error.
|
||||
|
||||
@@ -998,7 +998,7 @@ value_entirely_optimized_out (const struct value *value)
|
||||
int
|
||||
value_bits_valid (const struct value *value, int offset, int length)
|
||||
{
|
||||
if (value == NULL || !value->optimized_out)
|
||||
if (!value->optimized_out)
|
||||
return 1;
|
||||
if (value->lval != lval_computed
|
||||
|| !value->location.computed.funcs->check_validity)
|
||||
@@ -1011,7 +1011,7 @@ int
|
||||
value_bits_synthetic_pointer (const struct value *value,
|
||||
int offset, int length)
|
||||
{
|
||||
if (value == NULL || value->lval != lval_computed
|
||||
if (value->lval != lval_computed
|
||||
|| !value->location.computed.funcs->check_synthetic_pointer)
|
||||
return 0;
|
||||
return value->location.computed.funcs->check_synthetic_pointer (value,
|
||||
|
||||
Reference in New Issue
Block a user