blob: de3b6fc26e0a6a756a9eb508129ee80c8b3144f5 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
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}