forked from Imagelibrary/binutils-gdb
ARI fix in value.c::value_entirely_unavailable
gdb/ChangeLog:
* value.c (value_entirely_unavailable): ARI fix: Move trailing
binary operator to the next line. No actual code change.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2013-12-18 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* value.c (value_entirely_unavailable): ARI fix: Move trailing
|
||||
binary operator to the next line. No actual code change.
|
||||
|
||||
2013-12-17 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* frame.h (enum frame_id_stack_status): New enum.
|
||||
|
||||
@@ -380,8 +380,8 @@ value_entirely_unavailable (struct value *value)
|
||||
struct range *t = VEC_index (range_s, value->unavailable, 0);
|
||||
|
||||
if (t->offset == 0
|
||||
&& t->length == (TARGET_CHAR_BIT *
|
||||
TYPE_LENGTH (value_enclosing_type (value))))
|
||||
&& t->length == (TARGET_CHAR_BIT
|
||||
* TYPE_LENGTH (value_enclosing_type (value))))
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user