[clang] Thread safety analysis: Skip functions acquiring/releasing parameters (PR #141432)
via cfe-commits
cfe-commits at lists.llvm.org
Sun May 25 15:01:50 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 -- clang/lib/Analysis/ThreadSafety.cpp clang/test/SemaCXX/warn-thread-safety-analysis.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/Analysis/ThreadSafety.cpp b/clang/lib/Analysis/ThreadSafety.cpp
index 9f375d700..71031bff7 100644
--- a/clang/lib/Analysis/ThreadSafety.cpp
+++ b/clang/lib/Analysis/ThreadSafety.cpp
@@ -2352,7 +2352,7 @@ static bool attrArgsForImpl(llvm::iterator_range<clang::Expr **> Args) {
return llvm::all_of(Args, [](const Expr *E) {
if (isa<CXXThisExpr>(E))
return true;
- if (const auto* DRE = dyn_cast<DeclRefExpr>(E))
+ if (const auto *DRE = dyn_cast<DeclRefExpr>(E))
return isa<ParmVarDecl>(DRE->getDecl());
return false;
});
``````````
</details>
https://github.com/llvm/llvm-project/pull/141432
More information about the cfe-commits
mailing list