adjusting size attribute values of 0xffffffff as zero.
+2008-06-27 Joel Brobecker <brobecker@adacore.com>
+
+ * dwarf2read.c (read_attribute_value): Issue a complaint when
+ adjusting size attribute values of 0xffffffff as zero.
+
2008-06-27 Joseph Myers <joseph@codesourcery.com>
* i386-tdep.c (i386_16_byte_align_p): New.
if (attr->name == DW_AT_byte_size
&& form == DW_FORM_data4
&& DW_UNSND (attr) >= 0xffffffff)
- DW_UNSND (attr) = 0;
+ {
+ complaint
+ (&symfile_complaints,
+ _("Suspicious DW_AT_byte_size value treated as zero instead of 0x%lx"),
+ DW_UNSND (attr));
+ DW_UNSND (attr) = 0;
+ }
return info_ptr;
}