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 Sambucvoid loop(void) { 11*f4a2713aSLionel Sambuc func_returning_struct(); 12*f4a2713aSLionel Sambuc } 13