Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / PR2643-null-store-to-bitfield.c
blob5d06e5da519e381fda4fcff0dead74adf590f3d5
1 // RUN: %clang_cc1 -emit-llvm -o - %s
2 // PR2643
4 void foo(void) {
5 struct {
6 int a : 1;
7 int b : 1;
8 } entry = {0};