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 e510400 commit 4b0c62bCopy full SHA for 4b0c62b
llvm/lib/Analysis/ScalarEvolution.cpp
@@ -10629,7 +10629,8 @@ ScalarEvolution::getPredecessorWithUniqueSuccessorForBB(const BasicBlock *BB)
10629
/// front-end may have replicated the controlling expression.
10630
static bool HasSameValue(SCEVUse A, SCEVUse B) {
10631
// Quick check to see if they are the same SCEV, ignoring use-specific flags.
10632
- if (A.getPointer() == B.getPointer()) return true;
+ if (A.getPointer() == B.getPointer())
10633
+ return true;
10634
10635
auto ComputesEqualValues = [](const Instruction *A, const Instruction *B) {
10636
// Not all instructions that are "identical" compute the same value. For
0 commit comments