[llvm] [DependenceAnalysis][NFC] Removing PossiblyLoopIndependent parameter (PR #124615)

Alireza Torabian via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 6 10:58:39 PST 2025


================
@@ -3586,8 +3586,8 @@ bool DependenceInfo::invalidate(Function &F, const PreservedAnalyses &PA,
 // Care is required to keep the routine below, getSplitIteration(),
 // up to date with respect to this routine.
 std::unique_ptr<Dependence>
-DependenceInfo::depends(Instruction *Src, Instruction *Dst,
-                        bool PossiblyLoopIndependent) {
----------------
1997alireza wrote:

Thank you for the suggestion. However, since the `depends()` method can be called multiple times after the `DependenceInfo` class is initialized, the `PossiblyLoopIndependent` variable needs to be reset to `true` each time. As a result, initializing it only in the constructor wouldn't be sufficient for the intended behavior across multiple calls to `depends()`.

https://github.com/llvm/llvm-project/pull/124615


More information about the llvm-commits mailing list