Improve compatibility with older versions of Windows.
[llvm/msp430.git] / test / FrontendC / 2003-08-30-LargeIntegerBitfieldMember.c
blobf67aee4c10fb535eacb3edcd311b526cd5a25946
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
3 struct foo {
4 unsigned int I:1;
5 unsigned char J[1][123];
6 unsigned int K:1;
7 };
9 struct foo F;