aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/thiscall-struct-return.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/thiscall-struct-return.cpp')
-rw-r--r--test/CodeGenCXX/thiscall-struct-return.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGenCXX/thiscall-struct-return.cpp b/test/CodeGenCXX/thiscall-struct-return.cpp
index c38fa4ac99..ff531255bb 100644
--- a/test/CodeGenCXX/thiscall-struct-return.cpp
+++ b/test/CodeGenCXX/thiscall-struct-return.cpp
@@ -31,11 +31,11 @@ public:
// CHECK: define void @_Z4testv()
void test( void ) {
-// CHECK: call void @_ZN1CC1Ev(%class.C* %c)
+// CHECK: call void @_ZN1CC1Ev(%class.C* [[C:%.+]])
C c;
-// CHECK: call x86_thiscallcc void @_ZNK1C5SmallEv(%struct.S* sret %tmp, %class.C* %c)
+// CHECK: call x86_thiscallcc void @_ZNK1C5SmallEv(%struct.S* sret %{{.+}}, %class.C* [[C]])
(void)c.Small();
-// CHECK: call x86_thiscallcc void @_ZNK1C6MediumEv(%struct.M* sret %tmp1, %class.C* %c)
+// CHECK: call x86_thiscallcc void @_ZNK1C6MediumEv(%struct.M* sret %{{.+}}, %class.C* [[C]])
(void)c.Medium();
}