diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp index 16bd0adff983dd..758980187180bf 100644 --- a/llvm/lib/Analysis/ValueTracking.cpp +++ b/llvm/lib/Analysis/ValueTracking.cpp @@ -7146,8 +7146,8 @@ ConstantRange llvm::computeConstantRange(const Value *V, bool ForSigned, continue; // TODO: Set "ForSigned" parameter via Cmp->isSigned()? ConstantRange RHS = - computeConstantRange(Cmp->getOperand(1), UseInstrInfo, - /* ForSigned */ false, AC, I, DT, Depth + 1); + computeConstantRange(Cmp->getOperand(1), /* ForSigned */ false, + UseInstrInfo, AC, I, DT, Depth + 1); CR = CR.intersectWith( ConstantRange::makeAllowedICmpRegion(Cmp->getPredicate(), RHS)); }