repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix test to not get a moduleid that matches 'br'
[llvm/avr.git]
/
test
/
FrontendC
/
2003-08-23-LocalUnionTest.c
blob
987accca1cc1e54d87eeb33804aba3c1be397be9
1
// RUN: %llvmgcc -S %s -o - | llvm-as -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
}