empty-union-init.c 176 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 // RUN: %clang_cc1 -emit-llvm < %s -o - // PR2419 struct Mem { union { } u; }; struct Mem *columnMem(){ static const struct Mem nullMem = { {} }; }