summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/vararg-non-pod-ms-compat.cpp
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2014-09-29 23:45:00 +0000
committerHans Wennborg <hans@hanshq.net>2014-09-29 23:45:00 +0000
commit33797209f4e57cc0fd303962060b8c0eae247e3d (patch)
tree7c6d7efd7d826e19e702c3b8de861347290cc005 /test/CodeGenCXX/vararg-non-pod-ms-compat.cpp
parentc543a65783a4c493c4fa412952165098a7340903 (diff)
Try to fix non-asserts CodeGenCXX/vararg-non-pod-ms-compat.cpp
There are two GEP's in the function, and it seems the X64 CHECK was matching the wrong one. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@218645 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/vararg-non-pod-ms-compat.cpp')
-rw-r--r--test/CodeGenCXX/vararg-non-pod-ms-compat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/vararg-non-pod-ms-compat.cpp b/test/CodeGenCXX/vararg-non-pod-ms-compat.cpp
index da05c0b524..0d468aac57 100644
--- a/test/CodeGenCXX/vararg-non-pod-ms-compat.cpp
+++ b/test/CodeGenCXX/vararg-non-pod-ms-compat.cpp
@@ -15,7 +15,8 @@ void test(X x) {
// X86: %[[argmem:[^ ]*]] = alloca inalloca <{ %struct.X }>
// X86: call void (<{ %struct.X }>*, ...)* bitcast (void (...)* @"\01?vararg@@YAXZZ" to void (<{ %struct.X }>*, ...)*)(<{ %struct.X }>* inalloca %[[argmem]])
- // X64: %[[valptr:[^ ]*]] = getelementptr %struct.X* %{{[^ ]*}}, i32 0, i32 0
+ // X64: %[[agg:[^ ]*]] = alloca %struct.X
+ // X64: %[[valptr:[^ ]*]] = getelementptr %struct.X* %[[agg]], i32 0, i32 0
// X64: %[[val:[^ ]*]] = load i32* %[[valptr]]
// X64: call void (...)* @"\01?vararg@@YAXZZ"(i32 %[[val]])
@@ -23,4 +24,3 @@ void test(X x) {
vararg(x);
// CHECK: ret void
}
-