We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea17ced commit 68c8213Copy full SHA for 68c8213
llvm/lib/Analysis/ScalarEvolution.cpp
@@ -6049,8 +6049,9 @@ ScalarEvolution::createNodeForPHIWithIdenticalOperands(PHINode *PN) {
6049
6050
// Check if SCEV exprs for instructions are identical.
6051
const SCEV *CommonSCEV = getSCEV(CommonInst);
6052
- bool SCEVExprsIdentical = all_of(drop_begin(PN->incoming_values()),
6053
- [this, CommonSCEV](Value *V) { return CommonSCEV == getSCEV(V); });
+ bool SCEVExprsIdentical =
+ all_of(drop_begin(PN->incoming_values()),
6054
+ [this, CommonSCEV](Value *V) { return CommonSCEV == getSCEV(V); });
6055
return SCEVExprsIdentical ? CommonSCEV : nullptr;
6056
}
6057
0 commit comments