1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-05 12:31:46 +00:00
llvm-6502/test/CFrontend/2004-03-07-BitfieldCrash.c

12 lines
129 B
C
Raw Normal View History

struct s {
unsigned long long u33: 33;
unsigned long long u40: 40;
};
struct s a = { 1, 2};
int foo() {
return a.u40;
}