mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-29 23:16:28 +00:00
Make these structs larger to ensure that they
are returned by struct return. llvm-svn: 50038
This commit is contained in:
parent
cfb3631483
commit
717a1e09aa
@ -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);
|
||||
|
@ -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(){}
|
||||
|
Loading…
Reference in New Issue
Block a user