Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
sret.c
blob: 5f0d07404a169e9c9bb5ecbc5d836637d77ff77e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o - | grep sret | count 5
struct
abc
{
long
a
;
long
b
;
long
c
;
long
d
;
long
e
;
};
struct
abc foo1
(
void
);
struct
abc foo2
();
void
bar
()
{
struct
abc dummy1
=
foo1
();
struct
abc dummy2
=
foo2
();
}