From: Leny Kholodov Date: Mon, 8 Jun 2015 11:06:59 +0000 (+0000) Subject: Fix for temporary variable names in stack reuse tests in revision 239294 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=495e3024ae4e9b6965f3bbe55c19fc9588da5dd0;p=clang Fix for temporary variable names in stack reuse tests in revision 239294 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@239296 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/stack-reuse-miscompile.cpp b/test/CodeGenCXX/stack-reuse-miscompile.cpp index e6b9cbe336..ff01bee802 100644 --- a/test/CodeGenCXX/stack-reuse-miscompile.cpp +++ b/test/CodeGenCXX/stack-reuse-miscompile.cpp @@ -23,17 +23,17 @@ public: const char * f(S s) { -// CHECK: %1 = alloca %class.T, align 4 -// CHECK: %2 = alloca %class.T, align 4 -// CHECK: %3 = alloca %class.S, align 4 -// CHECK: %4 = alloca %class.T, align 4 -// CHECK: %5 = call x86_thiscallcc %class.T* @"\01??0T@@QAE@QBD@Z" -// CHECK: %6 = bitcast %class.S* %3 to i8* -// CHECK: %7 = bitcast %class.S* %s to i8* +// CHECK: [[T1:%.*]] = alloca %class.T, align 4 +// CHECK: [[T2:%.*]] = alloca %class.T, align 4 +// CHECK: [[T3:%.*]] = alloca %class.S, align 4 +// CHECK: [[T4:%.*]] = alloca %class.T, align 4 +// CHECK: [[T5:%.*]] = call x86_thiscallcc %class.T* @"\01??0T@@QAE@QBD@Z" +// CHECK: [[T6:%.*]] = bitcast %class.S* [[T3]] to i8* +// CHECK: [[T7:%.*]] = bitcast %class.S* %s to i8* // CHECK: call void @llvm.memcpy.p0i8.p0i8.i32 -// CHECK: %8 = call x86_thiscallcc %class.T* @"\01??0T@@QAE@VS@@@Z" +// CHECK: [[T8:%.*]] = call x86_thiscallcc %class.T* @"\01??0T@@QAE@VS@@@Z" // CHECK: call x86_thiscallcc void @"\01?concat@T@@QBE?AV1@ABV1@@Z" -// CHECK: %9 = call x86_thiscallcc i8* @"\01?str@T@@QBEPBDXZ"(%class.T* %4) +// CHECK: [[T9:%.*]] = call x86_thiscallcc i8* @"\01?str@T@@QBEPBDXZ"(%class.T* [[T4]]) return T("[").concat(T(s)).str(); } diff --git a/test/CodeGenCXX/stack-reuse.cpp b/test/CodeGenCXX/stack-reuse.cpp index ef73d1a538..a975f30a04 100644 --- a/test/CodeGenCXX/stack-reuse.cpp +++ b/test/CodeGenCXX/stack-reuse.cpp @@ -132,13 +132,13 @@ void large_auto_object() { int large_combiner_test(S_large s) { // CHECK-LABEL: define i32 @large_combiner_test -// CHECK: %1 = alloca %struct.Combiner -// CHECK: %2 = alloca %struct.Combiner -// CHECK: %3 = call %struct.Combiner* @_ZN8CombinerC1E7S_large(%struct.Combiner* %1, [9 x i32] %s.coerce) -// CHECK: call void @_ZN8Combiner1fEv(%struct.Combiner* sret %2, %struct.Combiner* %1) -// CHECK: %4 = getelementptr inbounds %struct.Combiner, %struct.Combiner* %2, i32 0, i32 0, i32 0, i32 0 -// CHECK: %5 = load i32, i32* %4 -// CHECK: ret i32 %5 +// CHECK: [[T1:%.*]] = alloca %struct.Combiner +// CHECK: [[T2:%.*]] = alloca %struct.Combiner +// CHECK: [[T3:%.*]] = call %struct.Combiner* @_ZN8CombinerC1E7S_large(%struct.Combiner* [[T1]], [9 x i32] %s.coerce) +// CHECK: call void @_ZN8Combiner1fEv(%struct.Combiner* sret [[T2]], %struct.Combiner* [[T1]]) +// CHECK: [[T4:%.*]] = getelementptr inbounds %struct.Combiner, %struct.Combiner* [[T2]], i32 0, i32 0, i32 0, i32 0 +// CHECK: [[T5:%.*]] = load i32, i32* [[T4]] +// CHECK: ret i32 [[T5]] return Combiner(s).f().a.a[0]; }