summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-02-22 03:36:54 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-02-22 03:36:54 +0000
commit0716b50db68e187b7f39844aeed0155280831d2d (patch)
tree07e6898231d1627aa0785f59f575bd0f0ff4376d /clang
parentcd06b482d2d19e5cd0606d72c2173af911f0c5f8 (diff)
downloadbcm5719-llvm-0716b50db68e187b7f39844aeed0155280831d2d.tar.gz
bcm5719-llvm-0716b50db68e187b7f39844aeed0155280831d2d.zip
test/CodeGenCXX/thiscall-struct-return.cpp: Relax expressions for -Asserts.
llvm-svn: 151126
Diffstat (limited to 'clang')
-rw-r--r--clang/test/CodeGenCXX/thiscall-struct-return.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/thiscall-struct-return.cpp b/clang/test/CodeGenCXX/thiscall-struct-return.cpp
index c38fa4ac997..ff531255bba 100644
--- a/clang/test/CodeGenCXX/thiscall-struct-return.cpp
+++ b/clang/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();
}
OpenPOWER on IntegriCloud