Adding XFAIL lines for dejagnu support.
[oota-llvm.git] / test / CFrontend / 2003-08-30-LargeIntegerBitfieldMember.c
1 struct foo {
2   unsigned int I:1;
3   unsigned char J[1][123];
4   unsigned int K:1;
5  };
6
7 struct foo F;