aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2012-02-10 10:04:01 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2012-02-10 10:04:01 +0000
commit1067d05041db25301cd923712870bcf97db6d8bc (patch)
tree96e9fc50250a1143b7d64ec65faeaabe3f3c249a
parenteefb3d5b49c844347f212073a7e975b8118fe8e9 (diff)
Loosen the test from r150238 a bit to make some of our bots happy.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150242 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/arm-arguments.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/arm-arguments.c b/test/CodeGen/arm-arguments.c
index 6b9f3505db..4686d4ab95 100644
--- a/test/CodeGen/arm-arguments.c
+++ b/test/CodeGen/arm-arguments.c
@@ -159,9 +159,9 @@ struct s31 { char x; };
void f31(struct s31 s) { }
// AAPCS: @f31([1 x i32] %s.coerce)
// AAPCS: %s = alloca %struct.s31, align 4
-// AAPCS: %tmp = alloca [1 x i32]
-// AAPCS: store [1 x i32] %s.coerce, [1 x i32]* %tmp
+// AAPCS: alloca [1 x i32]
+// AAPCS: store [1 x i32] %s.coerce, [1 x i32]*
// APCS-GNU: @f31([1 x i32] %s.coerce)
// APCS-GNU: %s = alloca %struct.s31, align 4
-// APCS-GNU: %tmp = alloca [1 x i32]
-// APCS-GNU: store [1 x i32] %s.coerce, [1 x i32]* %tmp
+// APCS-GNU: alloca [1 x i32]
+// APCS-GNU: store [1 x i32] %s.coerce, [1 x i32]*