Duncan Sands | b32d19d | 2010-11-25 21:24:35 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc %s -S -O0 -o - | grep sret | count 2 |
Dale Johannesen | ea839ef | 2007-10-25 00:50:14 +0000 | [diff] [blame] | 2 | |
3 | struct abc { | ||||
Duncan Sands | db70198 | 2008-04-21 08:17:05 +0000 | [diff] [blame] | 4 | long a; |
5 | long b; | ||||
6 | long c; | ||||
Dale Johannesen | ea839ef | 2007-10-25 00:50:14 +0000 | [diff] [blame] | 7 | }; |
8 | |||||
9 | struct abc foo2(){} |