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-08-23-LocalUnionTest.c
blob
dc27802623ae5756130f77ade8f7fb365a78d310
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
4
5
union
foo
{
int
X
; };
6
7
int
test
(
union
foo
*
F
) {
8
{
9
union
foo
{
float
X
; }
A
;
10
}
11
}