repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
empty-union-init.c
blob
f1cdfb12f624609a96116748749c4485034ffe4a
1
// RUN: %clang_cc1 -emit-llvm < %s -o -
2
// PR2419
3
4
struct
Mem
{
5
union
{
6
}
u
;
7
};
8
9
struct
Mem
*
columnMem
(
void
){
10
static const struct
Mem nullMem
= { {} };
11
}
12
13