xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2002-04-09-StructRetVal.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc struct S {
4*f4a2713aSLionel Sambuc   int i;
5*f4a2713aSLionel Sambuc   short s1, s2;
6*f4a2713aSLionel Sambuc };
7*f4a2713aSLionel Sambuc 
8*f4a2713aSLionel Sambuc struct S func_returning_struct(void);
9*f4a2713aSLionel Sambuc 
loop(void)10*f4a2713aSLionel Sambuc void loop(void) {
11*f4a2713aSLionel Sambuc   func_returning_struct();
12*f4a2713aSLionel Sambuc }
13