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 996820a commit 6104124Copy full SHA for 6104124
llvm/lib/Analysis/ScalarEvolution.cpp
@@ -10616,7 +10616,8 @@ ScalarEvolution::getPredecessorWithUniqueSuccessorForBB(const BasicBlock *BB)
10616
/// front-end may have replicated the controlling expression.
10617
static bool HasSameValue(SCEVUse A, SCEVUse B) {
10618
// Quick check to see if they are the same SCEV, ignoring use-specific flags.
10619
- if (A.getPointer() == B.getPointer()) return true;
+ if (A.getPointer() == B.getPointer())
10620
+ return true;
10621
10622
auto ComputesEqualValues = [](const Instruction *A, const Instruction *B) {
10623
// Not all instructions that are "identical" compute the same value. For
0 commit comments