blob: 11ac5d6824e8ebaf9852e379cc0dfa6e3faa1287 [file] [log] [blame]
Dan Gohman28beeea2007-08-15 13:36:28 +00001// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep sret | count 5
Anton Korobeynikov779dff12007-04-01 22:03:04 +00002
3struct abc {
Duncan Sands92b9d492008-04-21 08:17:05 +00004 long a;
5 long b;
6 long c;
Anton Korobeynikov779dff12007-04-01 22:03:04 +00007};
8
9struct abc foo1(void);
10struct abc foo2();
11
12void bar() {
13 struct abc dummy1 = foo1();
14 struct abc dummy2 = foo2();
Reid Spencerdcb925e2007-04-15 20:08:37 +000015}