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