
Conversion done using the script at https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34. These are tests where the conversion worked out of the box and no manual fixup was performed.
17 lines
394 B
C++
17 lines
394 B
C++
// RUN: %clang_cc1 -std=c++11 -triple x86_64-windows-msvc %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// If we de-virtualize ~Foo, we still need to call ??1Foo, not ??_DFoo.
|
|
|
|
struct Base {
|
|
virtual ~Base();
|
|
};
|
|
struct Foo final : Base {
|
|
};
|
|
void f(Foo *p) {
|
|
p->~Foo();
|
|
}
|
|
|
|
// CHECK-LABEL: define{{.*}} void @"?f@@YAXPEAUFoo@@@Z"(ptr noundef %p)
|
|
// CHECK: call void @"??1Foo@@UEAA@XZ"
|
|
// CHECK: ret void
|