opnsense-src/test/CodeGen/empty-union-init.c

14 lines
176 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -emit-llvm < %s -o -
2009-06-02 13:58:47 -04:00
// PR2419
struct Mem {
union {
} u;
};
struct Mem *columnMem(){
static const struct Mem nullMem = { {} };
}