[llvm] [DA][NFC] clang-format DependenceAnalysis (PR #151505)
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 6 07:14:30 PDT 2025
================
@@ -2840,17 +2770,14 @@ bool DependenceInfo::testBounds(unsigned char DirKind, unsigned Level,
// and the upper bound is always >= 0.
void DependenceInfo::findBoundsALL(CoefficientInfo *A, CoefficientInfo *B,
BoundInfo *Bound, unsigned K) const {
- Bound[K].Lower[Dependence::DVEntry::ALL] = nullptr; // Default value = -infinity.
- Bound[K].Upper[Dependence::DVEntry::ALL] = nullptr; // Default value = +infinity.
+ Bound[K].Lower[Dependence::DVEntry::ALL] = nullptr; // Represents -infinity
+ Bound[K].Upper[Dependence::DVEntry::ALL] = nullptr; // Represents +infinity
----------------
Meinersbur wrote:
Seems I missed the other occurences. Reverting my manual edit for now.
https://github.com/llvm/llvm-project/pull/151505
More information about the llvm-commits
mailing list