------- Comment #2 from eweddington at cso dot atmel dot com 2007-03-10 19:40 ------- >From the link in comment #1, on the gcc list, from Jim Wilson:
"> DW_AT_member_location seems to consequently equal -1 (ff ff ff ff) for the > first member of a bitfield. FYI You can get descriptive assembly by using the -dA option. This adds comments that make the dwarf2 debug info readable. Gcc calls this DW_AT_data_member_location. The DWARF2 info comes from dwarf2out.c. Grepping for DW_AT_data_member_location shows that it comes from the function add_data_member_location_attribute. The offset comes from the function field_byte_offset. Looking at this code, it seems to have a general problem on targets where TYPE_ALIGN of int is smaller than TYPE_SIZE of int. This is true on avr where the size is 2 but the alignment is 1. The code computes the end of the bitfield, subtracts the type size, and then rounds up to the alignment, which gives -1 for the offset, which is not a useful number. I would think the code would work better if we started with the beginning of the bitfield, and then rounded down to the alignment. I'd suggest checking the history of the code to see if there is a reason why it was written this way. There may be an obscure reason why the code is like it is." The issue is in field_byte_offset() in dwarf2out.c. Can someone with Bugzilla permissions please mark this bug as NEW (confirmed)? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17993