New, HARD, bitfield testcase

llvm-svn: 8227
This commit is contained in:
Chris Lattner 2003-08-30 20:57:49 +00:00
parent 88055880dc
commit 44e5799960
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
struct istruct {
unsigned char C;
};
struct foo {
unsigned int I:1;
struct istruct J;
unsigned char L[1];
unsigned int K:1;
};
struct foo F = { 1, { 7 }, { 123 } , 1 };