Skip to content

Commit 2e85b9f

Browse files
committed
clang-format
1 parent 4404569 commit 2e85b9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Analysis/DependenceAnalysis.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2863,8 +2863,8 @@ static std::optional<APInt> getConstanCoefficient(const SCEV *Expr) {
28632863
if (const auto *Constant = dyn_cast<SCEVConstant>(Expr))
28642864
return Constant->getAPInt();
28652865
if (const auto *Product = dyn_cast<SCEVMulExpr>(Expr))
2866-
if (Product->hasNoSignedWrap())
2867-
if (auto *Constant = dyn_cast<SCEVConstant>(Product->getOperand(0)))
2866+
if (const auto *Constant = dyn_cast<SCEVConstant>(Product->getOperand(0)))
2867+
if (Product->hasNoSignedWrap())
28682868
return Constant->getAPInt();
28692869
return std::nullopt;
28702870
}

0 commit comments

Comments
 (0)