aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/ConstraintSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Analysis/ConstraintSystem.cpp')
-rw-r--r--llvm/lib/Analysis/ConstraintSystem.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/ConstraintSystem.cpp b/llvm/lib/Analysis/ConstraintSystem.cpp
index 818cfe0..d5b15e7 100644
--- a/llvm/lib/Analysis/ConstraintSystem.cpp
+++ b/llvm/lib/Analysis/ConstraintSystem.cpp
@@ -46,7 +46,6 @@ bool ConstraintSystem::eliminateUsingFM() {
}
// FIXME do not use copy
- bool EliminatedInRow = false;
for (unsigned R2 = R1 + 1; R2 < NumConstraints; R2++) {
if (R1 == R2)
continue;
@@ -85,7 +84,6 @@ bool ConstraintSystem::eliminateUsingFM() {
.getZExtValue();
}
NewSystem.push_back(std::move(NR));
- EliminatedInRow = true;
}
}
Constraints = std::move(NewSystem);