blob: e1ca88cdc6f1e29b2d73bd6078d2af33175fc6ed [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3struct foo {
4 unsigned int I:1;
5 unsigned char J[1][123];
6 unsigned int K:1;
7 };
8
9struct foo F;