Unable to say "TARGET: *-*-darwin*"; falling back to "XFAIL: linux,ia64,alpha,sparc".
[oota-llvm.git] / test / FrontendC / 2003-08-29-StructLayoutBug.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3 struct foo {
4   unsigned int I:1;
5   unsigned char J[1];
6   unsigned int K:1;
7  };
8
9 void test(struct foo *X) {}
10