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 d6a9dbd commit 7b4f33bCopy full SHA for 7b4f33b
llvm/lib/Analysis/ScalarEvolution.cpp
@@ -10568,7 +10568,8 @@ ScalarEvolution::getPredecessorWithUniqueSuccessorForBB(const BasicBlock *BB)
10568
/// front-end may have replicated the controlling expression.
10569
static bool HasSameValue(SCEVUse A, SCEVUse B) {
10570
// Quick check to see if they are the same SCEV, ignoring use-specific flags.
10571
- if (A.getPointer() == B.getPointer()) return true;
+ if (A.getPointer() == B.getPointer())
10572
+ return true;
10573
10574
auto ComputesEqualValues = [](const Instruction *A, const Instruction *B) {
10575
// Not all instructions that are "identical" compute the same value. For
0 commit comments