blob: 58c77b6aa04f70def23283ad06aaac4768991ff2 [file] [log] [blame]
Chris Lattnerb9849702004-11-22 19:11:40 +00001// RUN: %llvmgcc -S %s -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
Chris Lattnerdf979192003-08-30 20:57:49 +00003struct istruct {
4 unsigned char C;
5};
6
7struct foo {
8 unsigned int I:1;
9 struct istruct J;
10 unsigned char L[1];
11 unsigned int K:1;
12};
13
14struct foo F = { 1, { 7 }, { 123 } , 1 };
15
16