Clang Project

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