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 0dc086a commit 4eba40cCopy full SHA for 4eba40c
llvm/lib/Analysis/ConstraintSystem.cpp
@@ -52,9 +52,6 @@ bool ConstraintSystem::eliminateUsingFM() {
52
for (unsigned R1 = 0; R1 < NumRemainingConstraints; R1++) {
53
// FIXME do not use copy
54
for (unsigned R2 = R1 + 1; R2 < NumRemainingConstraints; R2++) {
55
- if (R1 == R2)
56
- continue;
57
-
58
int64_t UpperLast = getLastCoefficient(RemainingRows[R2], LastIdx);
59
int64_t LowerLast = getLastCoefficient(RemainingRows[R1], LastIdx);
60
assert(
0 commit comments