llvm-project/clang/test/CodeGenCXX/devirtualize-ms-dtor.cpp
Nikita Popov 1b9a6e58a8 [CodeGenCXX] Convert some tests to opaque pointers (NFC)
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.
2022-10-06 12:22:03 +02:00

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