aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CFrontend/sret.c6
-rw-r--r--test/CFrontend/sret2.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/test/CFrontend/sret.c b/test/CFrontend/sret.c
index 9e34d7561e..11ac5d6824 100644
--- a/test/CFrontend/sret.c
+++ b/test/CFrontend/sret.c
@@ -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);
diff --git a/test/CFrontend/sret2.c b/test/CFrontend/sret2.c
index 137f5602c7..7b621f942f 100644
--- a/test/CFrontend/sret2.c
+++ b/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(){}