1 /* 2 * Compile this with: 3 * gcc -g -c PR28073-bitfield-removed.c 4 */ 5 #include <inttypes.h> 6 7 struct bigstruct { 8 char name[128]; 9 uint8_t other; 10 }; 11 access_bigstruct(struct bigstruct * st)12 void access_bigstruct(struct bigstruct *st __attribute__((unused))) 13 { 14 } 15