Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGenCXX/devirtualize-ms-dtor.cpp @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// 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