blob: 16731945b77c7ce15a843222717c000d83ec231a [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];
6 unsigned int K:1;
7 };
8
9void test(struct foo *X) {}
10