repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2003-01-30-UnionInit.c
blob
576958442aece266683da089458777a4b2fc7865
1
// RUN: %llvmgcc -S %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
} };