android_mt6572_jiabo/external/clang/test/CodeGen/PR2643-null-store-to-bitfield.c
2025-09-05 16:56:03 +08:00

10 lines
123 B
C

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