We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e762d4d commit 57777a5Copy full SHA for 57777a5
llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
@@ -1575,7 +1575,8 @@ bool LoopVectorizationLegality::isVectorizableEarlyExitLoop() {
1575
LLVM_DEBUG(
1576
dbgs()
1577
<< "LV: Found an early exit. Retrying with speculative exit count.\n");
1578
- const SCEV *SpecExitCount = PSE.getSymbolicMaxBackedgeTakenCount();
+ [[maybe_unused]] const SCEV *SpecExitCount =
1579
+ PSE.getSymbolicMaxBackedgeTakenCount();
1580
assert(!isa<SCEVCouldNotCompute>(SpecExitCount) &&
1581
"Failed to get symbolic expression for backedge taken count");
1582
0 commit comments