[clang] [Clang] Add -Wcounted-by-addrof to warn when &fam discards __counted_by (PR #206760)
via cfe-commits
cfe-commits at lists.llvm.org
Sun Jul 19 13:01:37 PDT 2026
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 origin/main HEAD --extensions c,cpp -- clang/test/Sema/warn-counted-by-addrof.c clang/lib/Sema/SemaChecking.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp
index 2c21e11fc..e643f5edf 100644
--- a/clang/lib/Sema/SemaChecking.cpp
+++ b/clang/lib/Sema/SemaChecking.cpp
@@ -3092,8 +3092,8 @@ static void DiagnoseCountedByAddrOfDynamicObjectSize(Sema &S,
return;
// The pointer argument must be the address of an lvalue: '&<expr>'.
- const auto *UO = dyn_cast<UnaryOperator>(
- Call->getArg(0)->IgnoreParenImpCasts());
+ const auto *UO =
+ dyn_cast<UnaryOperator>(Call->getArg(0)->IgnoreParenImpCasts());
if (!UO || UO->getOpcode() != UO_AddrOf)
return;
``````````
</details>
https://github.com/llvm/llvm-project/pull/206760
More information about the cfe-commits
mailing list