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
/
2002-07-30-SubregSetAssertion.c
blob
6d4f9f62058166f57c5a447bc95c1ef14bf6c4a6
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -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
}