Adjust test case for lexical block pruning. Follow-on to r104842 and Radar 7424645.
[oota-llvm.git] / test / FrontendC / 2003-08-30-LargeIntegerBitfieldMember.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3 struct foo {
4   unsigned int I:1;
5   unsigned char J[1][123];
6   unsigned int K:1;
7  };
8
9 struct foo F;