From: Bjorn Pettersson Date: Tue, 19 Oct 2021 19:43:50 +0000 (+0200) Subject: [SCEV] Fix formatting error introduced by D112080 X-Git-Tag: upstream/15.0.7~28205 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c44a0996c8cf87607807751be2315020c582c66;p=platform%2Fupstream%2Fllvm.git [SCEV] Fix formatting error introduced by D112080 Accidentally pushed D112080 without this clang-format cleanup. --- diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 33e5127..6a0a48e 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -10669,8 +10669,10 @@ bool ScalarEvolution::isImpliedCond(ICmpInst::Predicate Pred, const SCEV *LHS, auto BitWidth = getTypeSizeInBits(NarrowType); const SCEV *MaxValue = getZeroExtendExpr( getConstant(APInt::getMaxValue(BitWidth)), WideType); - if (isKnownViaNonRecursiveReasoning(ICmpInst::ICMP_ULE, FoundLHS, MaxValue) && - isKnownViaNonRecursiveReasoning(ICmpInst::ICMP_ULE, FoundRHS, MaxValue)) { + if (isKnownViaNonRecursiveReasoning(ICmpInst::ICMP_ULE, FoundLHS, + MaxValue) && + isKnownViaNonRecursiveReasoning(ICmpInst::ICMP_ULE, FoundRHS, + MaxValue)) { const SCEV *TruncFoundLHS = getTruncateExpr(FoundLHS, NarrowType); const SCEV *TruncFoundRHS = getTruncateExpr(FoundRHS, NarrowType); if (isImpliedCondBalancedTypes(Pred, LHS, RHS, FoundPred, TruncFoundLHS,