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
This commit is contained in:
Duncan Sands 2008-04-21 08:17:05 +00:00
parent 09eb6e7c25
commit 92b9d49e4c
2 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep sret | count 5
struct abc {
int a;
int b;
int c;
long a;
long b;
long c;
};
struct abc foo1(void);

View File

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