mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-21 19:20:50 +00:00
New, HARD, bitfield testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8227 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2fdd3c0714
commit
df9791912a
15
test/CFrontend/2003-08-30-AggregateInitializer.c
Normal file
15
test/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…
x
Reference in New Issue
Block a user