]> granicus.if.org Git - clang/commitdiff
clang/test/CodeGenCXX/microsoft-*: Fix for -Asserts.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 25 Sep 2012 09:53:18 +0000 (09:53 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 25 Sep 2012 09:53:18 +0000 (09:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164594 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/microsoft-abi-constructors.cpp
test/CodeGenCXX/microsoft-abi-methods.cpp
test/CodeGenCXX/microsoft-abi-static-initializers.cpp
test/CodeGenCXX/microsoft-interface.cpp

index 467f4174b7b5e19de0627b33b0be3630a1588719..89731ff38e9767ae99e1755b25c187f64f39211f 100644 (file)
@@ -10,11 +10,10 @@ void no_contstructor_destructor_infinite_recursion() {
   A a;
 
 // CHECK:      define linkonce_odr x86_thiscallcc %class.A* @"\01??0A@@QAE@XZ"(%class.A* %this)
-// CHECK-NEXT: entry:
-// CHECK-NEXT:   %this.addr = alloca %class.A*, align 4
-// CHECK-NEXT:   store %class.A* %this, %class.A** %this.addr, align 4
-// CHECK-NEXT:   %this1 = load %class.A** %this.addr
-// CHECK-NEXT:   ret %class.A* %this1
+// CHECK:        [[THIS_ADDR:%[.0-9A-Z_a-z]+]] = alloca %class.A*, align 4
+// CHECK-NEXT:   store %class.A* %this, %class.A** [[THIS_ADDR]], align 4
+// CHECK-NEXT:   [[T1:%[.0-9A-Z_a-z]+]] = load %class.A** [[THIS_ADDR]]
+// CHECK-NEXT:   ret %class.A* [[T1]]
 // CHECK-NEXT: }
 
 // Make sure that the destructor doesn't call itself:
index 6911bc2eecc9aef4a5f5109a3bad9d16ee2d09e2..c996ba5b8473ebc21eca972e169864ac4499eb2f 100644 (file)
@@ -72,7 +72,7 @@ void constructors() {
 // Make sure that the Base constructor call in the Child constructor uses
 // the right calling convention:
 // CHECK: define linkonce_odr x86_thiscallcc %class.Child* @"\01??0Child@@QAE@XZ"
-// CHECK: %call = call x86_thiscallcc %class.Base* @"\01??0Base@@QAE@XZ"
+// CHECK: %{{[.0-9A-Z_a-z]+}} = call x86_thiscallcc %class.Base* @"\01??0Base@@QAE@XZ"
 // CHECK: ret
 
 // Make sure that the Base destructor call in the Child denstructor uses
index 1ef4ace63c8d9230a721f5f2849352f0ed047e92..448f1eeeb91f7008f1e64078372fb0c37b359465 100644 (file)
@@ -6,7 +6,7 @@ struct S {
 } s;
 
 // CHECK: define internal void [[INIT_s:@.*global_var.*]] nounwind
-// CHECK: %call = call x86_thiscallcc %struct.S* @"\01??0S@@QAE@XZ"
+// CHECK: %{{[.0-9A-Z_a-z]+}} = call x86_thiscallcc %struct.S* @"\01??0S@@QAE@XZ"
 // CHECK: call i32 @atexit(void ()* @"__dtor_\01?s@@3US@@A")
 // CHECK: ret void
 
@@ -34,7 +34,7 @@ void force_usage() {
 }
 
 // CHECK: define internal void [[INIT_foo:@.*global_var.*]] nounwind
-// CHECK: %call = call x86_thiscallcc %class.A* @"\01??0A@@QAE@XZ"
+// CHECK: %{{[.0-9A-Z_a-z]+}} = call x86_thiscallcc %class.A* @"\01??0A@@QAE@XZ"
 // CHECK: call i32 @atexit(void ()* [[FOO_DTOR:@"__dtor_.*foo@.*]])
 // CHECK: ret void
 
index 3887d18df1b78f0debac364c6b13cbb054e09666..0b44bab7385458ba05f56f6b9c322fa8d2e4b449 100644 (file)
@@ -21,23 +21,23 @@ int fn() {
 
 // CHECK: define i32 @_Z2fnv()
 // CHECK:   call void @_ZN1SC1Ev(%struct.S* %s)
-// CHECK:   %call = call i32 @_ZN1S4testEv(%struct.S* %s)
+// CHECK:   %{{[.0-9A-Z_a-z]+}} = call i32 @_ZN1S4testEv(%struct.S* %s)
 
 // CHECK: define linkonce_odr void @_ZN1SC1Ev(%struct.S* %this)
-// CHECK:   call void @_ZN1SC2Ev(%struct.S* %this1)
+// CHECK:   call void @_ZN1SC2Ev(%struct.S* %{{[.0-9A-Z_a-z]+}})
 
 // CHECK: define linkonce_odr i32 @_ZN1S4testEv(%struct.S* %this)
-// CHECK:   %call = call i32 @_ZN1I4testEv(%__interface.I* %0)
+// CHECK:   %{{[.0-9A-Z_a-z]+}} = call i32 @_ZN1I4testEv(%__interface.I* %{{[.0-9A-Z_a-z]+}})
 
 // CHECK: define linkonce_odr i32 @_ZN1I4testEv(%__interface.I* %this)
 // CHECK:   ret i32 1
 
 // CHECK: define linkonce_odr void @_ZN1SC2Ev(%struct.S* %this)
-// CHECK:   call void @_ZN1IC2Ev(%__interface.I* %0)
-// CHECK:   store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1S, i64 0, i64 2), i8*** %1
+// CHECK:   call void @_ZN1IC2Ev(%__interface.I* %{{[.0-9A-Z_a-z]+}})
+// CHECK:   store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1S, i64 0, i64 2), i8*** %{{[.0-9A-Z_a-z]+}}
 
 // CHECK: define linkonce_odr void @_ZN1IC2Ev(%__interface.I* %this)
-// CHECK:   store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1I, i64 0, i64 2), i8*** %0
+// CHECK:   store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1I, i64 0, i64 2), i8*** %{{[.0-9A-Z_a-z]+}}
 
 // CHECK-NOT: define linkonce_odr %__interface.I* @_ZN1IaSERKS_(%__interface.I* %this, %__interface.I*)
 // CHECK-NOT: define linkonce_odr %__interface.I* @_ZN1IaSEOS_(%__interface.I* %this, %__interface.I*)