aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/PR2643-null-store-to-bitfield.c
blob: 5d06e5da519e381fda4fcff0dead74adf590f3d5 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -emit-llvm -o - %s
// PR2643

void foo(void) {
  struct {
    int a : 1;
    int b : 1;
  } entry = {0};
}