summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-diff/DifferenceEngine.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-10-01 13:32:03 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-10-01 13:32:03 +0000
commit44fee4e0eb62c691d80ed5f36cb96321b4167a6d (patch)
tree76606fd558ae8eb98363e8e98caffdaff04cc734 /llvm/tools/llvm-diff/DifferenceEngine.cpp
parentad864049d68d44445f2eae5d186179299a86d217 (diff)
downloadbcm5719-llvm-44fee4e0eb62c691d80ed5f36cb96321b4167a6d.tar.gz
bcm5719-llvm-44fee4e0eb62c691d80ed5f36cb96321b4167a6d.zip
Remove several unused variables.
Patch by Alp Toker. llvm-svn: 191757
Diffstat (limited to 'llvm/tools/llvm-diff/DifferenceEngine.cpp')
-rw-r--r--llvm/tools/llvm-diff/DifferenceEngine.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/tools/llvm-diff/DifferenceEngine.cpp b/llvm/tools/llvm-diff/DifferenceEngine.cpp
index ba15667d8c3..768b94b6907 100644
--- a/llvm/tools/llvm-diff/DifferenceEngine.cpp
+++ b/llvm/tools/llvm-diff/DifferenceEngine.cpp
@@ -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;
OpenPOWER on IntegriCloud