blob: e82ea139d418c9d48ff6b5827c6014dc2890b025 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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;
}
|