Sign in
chromium
/
external
/
github.com
/
llvm
/
llvm-project.git
/
refs/heads/chromeos/llvm-r530567-1
/
.
/
clang
/
test
/
CodeGen
/
empty-union-init.c
blob: f1cdfb12f624609a96116748749c4485034ffe4a [
file
] [
log
] [
blame
] [
edit
]
// RUN: %clang_cc1 -emit-llvm < %s -o -
// PR2419
struct
Mem
{
union
{
}
u
;
};
struct
Mem
*
columnMem
(
void
){
static
const
struct
Mem
nullMem
=
{
{}
};
}