Files
clang-p2996/clang/test/CodeGenCXX/devirtualize-ms-dtor.cpp
hyeongyu kim fd9b099906 Revert "[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default"
This reverts commit aacfbb953e.

Revert "Fix lit test failures in CodeGenCoroutines"

This reverts commit 63fff0f5bf.
2021-11-09 02:15:55 +09:00

17 lines
395 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"(%struct.Foo* %p)
// CHECK: call void @"??1Foo@@UEAA@XZ"
// CHECK: ret void