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
/
2007-04-13-InlineAsmUnion2.c
blob
284654d223c04d0bf983de7a03168931a0c1ec83
1
// RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call void asm}
2
3
union
U
{
int
x
;
char
*
p
; };
4
void
foo
() {
5
union
U bar
;
6
__asm__
volatile
(
"foo %0
\n
"
::
"r"
(
bar
));
7
}