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:
Joel Brobecker 2013-12-18 06:42:49 +04:00
parent 20ecd7ef4f
commit 64c46ce4ac
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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;
}