This test has been automatized
[oota-llvm.git] / test / CFrontend / 2002-04-09-StructRetVal.c
1 struct S {
2   int i;
3   short s1, s2;
4 };
5
6 struct S func_returning_struct(void);
7
8 void loop(void) {
9   func_returning_struct();
10 }