[clang] [win][clang] Align scalar deleting destructors with MSABI (PR #139566)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 18 01:40:29 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions cpp,h -- clang/include/clang/AST/DeclCXX.h clang/include/clang/Sema/Sema.h clang/lib/CodeGen/CGClass.cpp clang/lib/CodeGen/MicrosoftCXXABI.cpp clang/lib/Sema/SemaDeclCXX.cpp clang/lib/Sema/SemaExprCXX.cpp clang/test/CodeGenCXX/cxx2a-destroying-delete.cpp clang/test/CodeGenCXX/microsoft-abi-structors.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/Sema/SemaDeclCXX.cpp b/clang/lib/Sema/SemaDeclCXX.cpp
index aadab2bcb..cf2a0b3bf 100644
--- a/clang/lib/Sema/SemaDeclCXX.cpp
+++ b/clang/lib/Sema/SemaDeclCXX.cpp
@@ -11135,9 +11135,9 @@ bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
// In Microsoft ABI whenever a class has a defined operator delete,
// scalar deleting destructors check the 3rd bit of the implicit
// parameter and if it is set, then, global operator delete must be
- // called instead of the class-specific one. Find and save the global operator
- // delete for that case. Do not diagnose at this point because the
- // lack of a global operator delete is not an error if there are no
+ // called instead of the class-specific one. Find and save the global
+ // operator delete for that case. Do not diagnose at this point because
+ // the lack of a global operator delete is not an error if there are no
// delete calls that require it.
FunctionDecl *GlobalOperatorDelete =
FindDeallocationFunctionForDestructor(Loc, RD, /*Diagnose*/ false,
``````````
</details>
https://github.com/llvm/llvm-project/pull/139566
More information about the cfe-commits
mailing list