[llvm] Be more aggressive with ObjCARCContract.cpp (PR #130630)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 09:21:03 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 21ff15fa1a4b9abf1c8182a1a465923bdae517a5 cafa666c4f61f99ff454f95f3d1f742fd6b8a173 --extensions cpp -- llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp b/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
index 2d8ad1ac66..0430d0a95e 100644
--- a/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
+++ b/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
@@ -250,8 +250,9 @@ static StoreInst *findSafeStoreForStoreStrongContraction(LoadInst *Load,
if (IsRetain(Class)) {
Value *RetainArg = GetArgRCIdentityRoot(Inst);
Value *LoadRoot = GetRCIdentityRoot(Load);
- if (RetainArg != LoadRoot && !AA->alias(MemoryLocation::get(Load),
- MemoryLocation::getBeforeOrAfter(RetainArg))) {
+ if (RetainArg != LoadRoot &&
+ !AA->alias(MemoryLocation::get(Load),
+ MemoryLocation::getBeforeOrAfter(RetainArg))) {
continue;
}
// If the retain is on the same object or we can't prove no aliasing,
``````````
</details>
https://github.com/llvm/llvm-project/pull/130630
More information about the llvm-commits
mailing list