From 3d45083d4fa60ed443d6e6e212ee154054b87bf3 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Wed, 16 Nov 2016 19:31:44 +0000 Subject: [PATCH] Relax testcase. This removes checks that are irrelevant for what is being tested. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@287141 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGenCXX/debug-info-thunk-msabi.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/CodeGenCXX/debug-info-thunk-msabi.cpp b/test/CodeGenCXX/debug-info-thunk-msabi.cpp index 4f4be3f3cd..5c705ac0ac 100644 --- a/test/CodeGenCXX/debug-info-thunk-msabi.cpp +++ b/test/CodeGenCXX/debug-info-thunk-msabi.cpp @@ -6,9 +6,9 @@ class __declspec(dllexport) A { // CHECK: define {{.*}}void @"\01??_FA@@AAEXXZ" // CHECK-SAME: !dbg ![[SP:[0-9]+]] // CHECK-NOT: {{ret }} -// CHECK: call x86_thiscallcc %class.A* @"\01??0A@@AAE@PAH@Z"(%class.A* %this1, i32* %0) +// CHECK: call x86_thiscallcc %class.A* @"\01??0A@@AAE@PAH@Z" // CHECK-SAME: !dbg ![[DBG:[0-9]+]] -// CHECK: ret void, !dbg ![[DBG1:[0-9]+]] +// CHECK: ret void, !dbg // // CHECK: ![[SP]] = distinct !DISubprogram( // CHECK-SAME: line: 4 @@ -16,5 +16,4 @@ class __declspec(dllexport) A { // CHECK-SAME: DIFlagArtificial // CHECK-SAME: ){{$}} // -// CHECK: ![[DBG1]] = !DILocation(line: 0 // CHECK: ![[DBG]] = !DILocation(line: 0 -- 2.40.0