xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/sret2.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc // RUN: %clang_cc1 %s -emit-llvm -o - | grep sret | count 2
2f4a2713aSLionel Sambuc 
3f4a2713aSLionel Sambuc struct abc {
4f4a2713aSLionel Sambuc  long a;
5f4a2713aSLionel Sambuc  long b;
6f4a2713aSLionel Sambuc  long c;
7*0a6a1f1dSLionel Sambuc  long d;
8*0a6a1f1dSLionel Sambuc  long e;
9f4a2713aSLionel Sambuc };
10f4a2713aSLionel Sambuc 
foo2()11f4a2713aSLionel Sambuc struct abc foo2(){}
12