Make these structs larger to ensure that they
are returned by struct return.

llvm-svn: 50038
diff --git a/llvm/test/CFrontend/sret2.c b/llvm/test/CFrontend/sret2.c
index 137f560..7b621f9 100644
--- a/llvm/test/CFrontend/sret2.c
+++ b/llvm/test/CFrontend/sret2.c
@@ -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(){}