gdb/ChangeLog:
* value.c (value_entirely_unavailable): ARI fix: Move trailing
binary operator to the next line. No actual code change.
+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.
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;
}