[llvm] [Transform] Clean up strlen loop idiom (PR #132421)
Henry Jiang via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 16:07:13 PDT 2025
================
@@ -1540,7 +1530,8 @@ static Value *matchCondition(BranchInst *BI, BasicBlock *LoopEntry,
if (!Cond)
return nullptr;
- if (!isZeroConstant(Cond->getOperand(1)))
+ const ConstantInt *CmpZero = dyn_cast<ConstantInt>(Cond->getOperand(1));
----------------
mustartt wrote:
Updated to use `auto`.
https://github.com/llvm/llvm-project/pull/132421
More information about the llvm-commits
mailing list