repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
When removing a function from the function set and adding it to deferred, we
[llvm.git]
/
test
/
FrontendC
/
2007-04-13-InlineAsmStruct2.c
blob
44ddeb3f95d8d1e147fd658b1536e8a4c77a2afe
1
// RUN: %llvmgcc %s -S -o - | grep {call void asm}
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