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