Sign in
ara-mdk
/
platform
/
external
/
llvm
/
fc643c5e88c596f217750dd91fcc66488dfed73d
/
.
/
test
/
CFrontend
/
2007-04-11-InlineAsmStruct.c
blob: 158a16e53665acfe852b52f51b1082962a118558 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
struct
V
{
short
X
,
Y
;
};
int
bar
()
{
struct
V bar
;
__asm__
volatile
(
"foo %0\n"
:
"=r"
(
bar
));
return
bar
.
X
;
}