xref: /llvm-project/clang/test/CodeGenCXX/debug-info-ms-dtor-thunks.cpp (revision 1b9a6e58a8b831193c9e5e733f881aabe0d2d06b)
1 // RUN: %clang_cc1 -triple i686--windows -emit-llvm -debug-info-kind=line-tables-only -x c++ %s -fms-extensions -o - | FileCheck %s
2 // RUN: %clang_cc1 -triple i686--windows -emit-llvm -debug-info-kind=line-directives-only -x c++ %s -fms-extensions -o - | FileCheck %s
3 
4 struct __declspec(dllexport) S { virtual ~S(); };
5 struct __declspec(dllexport) T { virtual ~T(); };
6 struct __declspec(dllexport) U : S, T { virtual ~U(); };
7 
8 // CHECK-LABEL: define {{.*}} @"??_GS@@UAEPAXI@Z"
9 // CHECK: call x86_thiscallcc void @"??1S@@UAE@XZ"(ptr {{[^,]*}} %this1){{.*}}!dbg !{{[0-9]+}}
10 
11 // CHECK-LABEL: define {{.*}} @"??_GT@@UAEPAXI@Z"
12 // CHECK: call x86_thiscallcc void @"??1T@@UAE@XZ"(ptr {{[^,]*}} %this1){{.*}}!dbg !{{[0-9]+}}
13 
14 // CHECK-LABEL: define {{.*}} @"??_GU@@UAEPAXI@Z"
15 // CHECK: call x86_thiscallcc void @"??1U@@UAE@XZ"(ptr {{[^,]*}} %this1){{.*}}!dbg !{{[0-9]+}}
16