llvm-6502/test/CFrontend/2004-03-07-BitfieldCrash.c
2005-01-08 23:44:03 +00:00

16 lines
184 B
C

// RUN: %llvmgcc -S %s -o /dev/null
/*
* XFAIL: *
*/
struct s {
unsigned long long u33: 33;
unsigned long long u40: 40;
};
struct s a = { 1, 2};
int foo() {
return a.u40;
}