[SCEV] Fix formatting error introduced by D112080
authorBjorn Pettersson <bjorn.a.pettersson@ericsson.com>
Tue, 19 Oct 2021 19:43:50 +0000 (21:43 +0200)
committerBjorn Pettersson <bjorn.a.pettersson@ericsson.com>
Tue, 19 Oct 2021 19:44:07 +0000 (21:44 +0200)
Accidentally pushed D112080 without this clang-format cleanup.

llvm/lib/Analysis/ScalarEvolution.cpp

index 33e5127..6a0a48e 100644 (file)
@@ -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,