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
/
2002-07-30-SubregSetAssertion.c
blob
af72eda65242442891e2adb8288a22c6859a9f82
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
4
union
X
{
5
void
*
B
;
6
};
7
8
union
X
foo
() {
9
union
X A
;
10
A
.
B
= (
void
*)
123
;
11
return
A
;
12
}