llvm-6502/test/CFrontend/2004-03-07-BitfieldCrash.c

12 lines
129 B
C
Raw Normal View History

struct s {
unsigned long long u33: 33;
unsigned long long u40: 40;
};
struct s a = { 1, 2};
int foo() {
return a.u40;
}