remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / 2003-08-30-LargeIntegerBitfieldMember.c
blobe1ca88cdc6f1e29b2d73bd6078d2af33175fc6ed
1 // RUN: %llvmgcc -S %s -o - | llvm-as -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;