blob: f043ab721095f5b4ccc55d2df00d2b65eb344f37 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3struct S {
4 int i;
5 short s1, s2;
6};
7
8struct S func_returning_struct(void);
9
10void loop(void) {
11 func_returning_struct();
12}