1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/test/Regression/CFrontend/2004-03-07-BitfieldCrash.c
Chris Lattner 1ecf76aab7 New testcase for PR269
llvm-svn: 12211
2004-03-08 05:35:12 +00:00

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;
}