Remove several unused variables.
[oota-llvm.git] / tools / llvm-diff / DifferenceEngine.cpp
index ba15667d8c30657c5b25f1572d029088e35375d0..768b94b6907134926b2c806d51e2c30da2054249 100644 (file)
@@ -195,8 +195,6 @@ class FunctionDifferenceEngine {
     BasicBlock::iterator LI = L->begin(), LE = L->end();
     BasicBlock::iterator RI = R->begin();
 
-    llvm::SmallVector<std::pair<Instruction*,Instruction*>, 20> TentativePairs;
-
     do {
       assert(LI != LE && RI != R->end());
       Instruction *LeftI = &*LI, *RightI = &*RI;