diff options
Diffstat (limited to 'clang/test/CodeGen/2008-02-08-bitfield-bug.c')
-rw-r--r-- | clang/test/CodeGen/2008-02-08-bitfield-bug.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2008-02-08-bitfield-bug.c b/clang/test/CodeGen/2008-02-08-bitfield-bug.c new file mode 100644 index 0000000..1549b72 --- /dev/null +++ b/clang/test/CodeGen/2008-02-08-bitfield-bug.c @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 %s -emit-llvm -o %t + +struct test { + unsigned a:1; + unsigned b:1; +}; + +struct test *t; + |