[llvm-branch-commits] [llvm] [DA] Consolidate the core logic of the Weak Zero SIV tests (NFCI) (PR #185577)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Mar 10 00:05:49 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 cpp,h -- llvm/include/llvm/Analysis/DependenceAnalysis.h llvm/lib/Analysis/DependenceAnalysis.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/llvm/lib/Analysis/DependenceAnalysis.cpp b/llvm/lib/Analysis/DependenceAnalysis.cpp
index e149657ae..8beefedef 100644
--- a/llvm/lib/Analysis/DependenceAnalysis.cpp
+++ b/llvm/lib/Analysis/DependenceAnalysis.cpp
@@ -1906,7 +1906,11 @@ bool DependenceInfo::weakZeroSrcSIVtest(const SCEV *SrcConst,
assert(0 < Level && Level <= MaxLevels && "Level out of range");
Level--;
- // We have analyzed a dependence from Src to Dst, so \c Result may represent a dependence in that direction. However, \c weakZeroSIVtestImpl will analyze a dependence from \c Dst to \c SrcConst. To keep the consistency, we need to negate the current result before passing it to \c weakZeroSIVtestImpl, and negate it back after that.
+ // We have analyzed a dependence from Src to Dst, so \c Result may represent a
+ // dependence in that direction. However, \c weakZeroSIVtestImpl will analyze
+ // a dependence from \c Dst to \c SrcConst. To keep the consistency, we need
+ // to negate the current result before passing it to \c weakZeroSIVtestImpl,
+ // and negate it back after that.
Result.negate(*SE);
bool Res = weakZeroSIVtestImpl(Dst, SrcConst, Level, Result);
Result.negate(*SE);
``````````
</details>
https://github.com/llvm/llvm-project/pull/185577
More information about the llvm-branch-commits
mailing list