xref: /llvm-project/clang/test/CodeGen/PR2643-null-store-to-bitfield.c (revision 1ea584377e7897f7df5302ed9cd378d17be14fbf)
1 // RUN: %clang_cc1 -emit-llvm -o - %s
2 // PR2643
3 
foo(void)4 void foo(void) {
5   struct {
6     int a : 1;
7     int b : 1;
8   } entry = {0};
9 }
10 
11