mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
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;
|
||
|
}
|