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
Improve compatibility with older versions of Windows.
[llvm/msp430.git]
/
test
/
FrontendC
/
2007-04-11-InlineAsmStruct.c
blob
158a16e53665acfe852b52f51b1082962a118558
1
// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
2
3
struct
V
{
short
X
,
Y
; };
4
int
bar
() {
5
struct
V bar
;
6
__asm__
volatile
(
"foo %0
\n
"
:
"=r"
(
bar
));
7
return
bar
.
X
;
8
}
9