llvm-6502/test/CFrontend/2003-08-30-LargeIntegerBitfieldMember.c

9 lines
100 B
C
Raw Normal View History

struct foo {
unsigned int I:1;
unsigned char J[1][123];
unsigned int K:1;
};
struct foo F;