OSDN Git Service

./:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / bitfld-15.c
1 /* { dg-do compile } */
2 /* Remove pedantic.  Allow the GCC extension to use char for bitfields.  */
3 /* { dg-options "" } */
4
5 struct t
6 {
7   char a:4;
8   char b:8;
9   char c:4;
10 } __attribute__ ((packed)); /* { dg-message "note: Offset of packed bit-field 'b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
11
12 int assrt[sizeof (struct t) == 2 ? 1 : -1];