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:
parent
fbbf4db004
commit
1be1c179fc
15
test/Regression/CFrontend/2003-08-30-AggregateInitializer.c
Normal file
15
test/Regression/CFrontend/2003-08-30-AggregateInitializer.c
Normal 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 };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user