blob: c655e4a4d05d5cb2298582755c50f3f6df30b7c3 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -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}