[Lldb-commits] [clang] [lldb] Reland [MS][clang] Add support for vector deleting destructors (PR #165598)
Mariya Podchishchaeva via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 5 08:12:30 PST 2025
================
@@ -1736,8 +1736,8 @@ void ItaniumVTableBuilder::LayoutPrimaryAndSecondaryVTables(
const CXXMethodDecl *MD = I.first;
const MethodInfo &MI = I.second;
if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
- MethodVTableIndices[GlobalDecl(DD, Dtor_Complete)]
- = MI.VTableIndex - AddressPoint;
+ MethodVTableIndices[GlobalDecl(DD, Dtor_Complete)] =
+ MI.VTableIndex - AddressPoint;
----------------
Fznamznon wrote:
Removed from this PR, thanks for the catch!
https://github.com/llvm/llvm-project/pull/165598
More information about the lldb-commits
mailing list