1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

New, HARD, bitfield testcase

llvm-svn: 8227
This commit is contained in:
Chris Lattner 2003-08-30 20:57:49 +00:00
parent fbbf4db004
commit 1be1c179fc

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