Make these structs larger to ensure that they
authorDuncan Sands <baldrick@free.fr>
Mon, 21 Apr 2008 08:17:05 +0000 (08:17 +0000)
committerDuncan Sands <baldrick@free.fr>
Mon, 21 Apr 2008 08:17:05 +0000 (08:17 +0000)
are returned by struct return.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50038 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/sret.c
test/CFrontend/sret2.c

index 9e34d7561ee1f1cd5d20260df3fdf9802a29974f..11ac5d6824e8ebaf9852e379cc0dfa6e3faa1287 100644 (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);
index 137f5602c7a20a29159234e6567a2e36ef9abd3b..7b621f942fa9a3b78fc6cf56c6a9ad6eac202788 100644 (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(){}