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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2003-01-30-UnionInit.c
blob
98aee727b4ecd45c3ca2ced955edbeeb630056e1
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
union
foo
{
4
struct
{
char
A
,
B
; }
X
;
5
int
C
;
6
};
7
8
union
foo V
= { {
1
,
2
} };