1// RUN: %clang_cc1 %s -emit-llvm -o - | grep sret | count 5
2
3struct abc {
4 long a;
5 long b;
6 long c;
7 long d;
8 long e;
9};
10
11struct abc foo1(void);
12struct abc foo2();
13
14void bar() {
15  struct abc dummy1 = foo1();
16  struct abc dummy2 = foo2();
17}
18