Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
2007-04-11-InlineAsmStruct.c
blob: d617feeed9f96f9b9c99efb3a569f119052dd9a8 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o -
struct
V
{
short
X
,
Y
;
};
int
bar
()
{
struct
V bar
;
__asm__
volatile
(
"foo %0\n"
:
"=r"
(
bar
));
return
bar
.
X
;
}