xref: /llvm-project/clang/test/CodeGen/2008-02-08-bitfield-bug.c (revision 8fbe78f6fc7b41d1a4228c126fcb522131150518)
1 // RUN: %clang_cc1 %s -emit-llvm -o %t
2 
3 struct test {
4   unsigned a:1;
5   unsigned b:1;
6 };
7 
8 struct test *t;
9 
10