llvm-6502/test/CFrontend/sret2.c
Duncan Sands 92b9d49e4c Make these structs larger to ensure that they
are returned by struct return.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50038 91177308-0d34-0410-b5e6-96231b3b80d8
2008-04-21 08:17:05 +00:00

10 lines
131 B
C

// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep sret | count 2
struct abc {
long a;
long b;
long c;
};
struct abc foo2(){}