Sign in
llvm
/
llvm-project
/
clang
/
9a7d68d434f9c45fc3ba9037cf01871bdd3caa9e
/
.
/
test
/
CodeGen
/
empty-union-init.c
blob: 386aeb260fae5360e9528dfcf57a55556fc8f1d1 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm < %s -o -
// PR2419
struct
Mem
{
union
{
}
u
;
};
struct
Mem
*
columnMem
(
void
){
static
const
struct
Mem
nullMem
=
{
{}
};
return
0
;
}