Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / empty-union-init.c
blobf1cdfb12f624609a96116748749c4485034ffe4a
1 // RUN: %clang_cc1 -emit-llvm < %s -o -
2 // PR2419
4 struct Mem {
5 union {
6 } u;
7 };
9 struct Mem *columnMem(void){
10 static const struct Mem nullMem = { {} };