freebsd-dev/test/CodeGen/PR2643-null-store-to-bitfield.c
2010-01-01 10:34:51 +00:00

11 lines
123 B
C

// RUN: %clang_cc1 -emit-llvm -o - %s
// PR2643
void foo() {
struct {
int a : 1;
int b : 1;
} entry = {0};
}