blob: 9e34d7561ee1f1cd5d20260df3fdf9802a29974f [file] [log] [blame]
Dan Gohman8c89a502007-08-15 13:36:28 +00001// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep sret | count 5
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3struct abc {
4 int a;
5 int b;
6 int c;
7};
8
9struct abc foo1(void);
10struct abc foo2();
11
12void bar() {
13 struct abc dummy1 = foo1();
14 struct abc dummy2 = foo2();
15}