mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
1ecf76aab7
llvm-svn: 12211
12 lines
129 B
C
12 lines
129 B
C
|
|
struct s {
|
|
unsigned long long u33: 33;
|
|
unsigned long long u40: 40;
|
|
};
|
|
|
|
struct s a = { 1, 2};
|
|
|
|
int foo() {
|
|
return a.u40;
|
|
}
|