Skip to content

Commit 68c8213

Browse files
clang-format
1 parent ea17ced commit 68c8213

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/lib/Analysis/ScalarEvolution.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6049,8 +6049,9 @@ ScalarEvolution::createNodeForPHIWithIdenticalOperands(PHINode *PN) {
60496049

60506050
// Check if SCEV exprs for instructions are identical.
60516051
const SCEV *CommonSCEV = getSCEV(CommonInst);
6052-
bool SCEVExprsIdentical = all_of(drop_begin(PN->incoming_values()),
6053-
[this, CommonSCEV](Value *V) { return CommonSCEV == getSCEV(V); });
6052+
bool SCEVExprsIdentical =
6053+
all_of(drop_begin(PN->incoming_values()),
6054+
[this, CommonSCEV](Value *V) { return CommonSCEV == getSCEV(V); });
60546055
return SCEVExprsIdentical ? CommonSCEV : nullptr;
60556056
}
60566057

0 commit comments

Comments
 (0)