[llvm] f4c498b - [FixIrreducible]Fix verify call
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 26 07:10:35 PDT 2024
Author: Alexey Bataev
Date: 2024-08-26T07:09:57-07:00
New Revision: f4c498bc7399b00bd7b1157645cf03906fbe7954
URL: https://github.com/llvm/llvm-project/commit/f4c498bc7399b00bd7b1157645cf03906fbe7954
DIFF: https://github.com/llvm/llvm-project/commit/f4c498bc7399b00bd7b1157645cf03906fbe7954.diff
LOG: [FixIrreducible]Fix verify call
Added:
Modified:
llvm/lib/Transforms/Utils/FixIrreducible.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Utils/FixIrreducible.cpp b/llvm/lib/Transforms/Utils/FixIrreducible.cpp
index 67fb806d3eae54..4bcd85ff2336bd 100644
--- a/llvm/lib/Transforms/Utils/FixIrreducible.cpp
+++ b/llvm/lib/Transforms/Utils/FixIrreducible.cpp
@@ -342,7 +342,7 @@ static bool FixIrreducibleImpl(Function &F, CycleInfo &CI, DominatorTree &DT,
#if defined(EXPENSIVE_CHECKS)
CI.verify();
if (LI) {
- LI.verify(DT);
+ LI->verify(DT);
}
#endif // EXPENSIVE_CHECKS
More information about the llvm-commits
mailing list