blob: ab2f61012d72084838f73fc0e9b07211a4348c45 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Tanya Lattner12ff9682004-11-06 20:38:27 +00003// XFAIL: linux,sun,darwin
Chris Lattnerdf979192003-08-30 20:57:49 +00004struct istruct {
5 unsigned char C;
6};
7
8struct foo {
9 unsigned int I:1;
10 struct istruct J;
11 unsigned char L[1];
12 unsigned int K:1;
13};
14
15struct foo F = { 1, { 7 }, { 123 } , 1 };
16
17