From: Chris Lattner Date: Mon, 9 Oct 2006 20:12:37 +0000 (+0000) Subject: Remove a dead var noticed by Yorion X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=54e4c02d8e7ca49b89a1f39824a7617920dd43f0;p=oota-llvm.git Remove a dead var noticed by Yorion git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30841 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/ListReducer.h b/tools/bugpoint/ListReducer.h index 9bb93b5b83c..784c2f8bde4 100644 --- a/tools/bugpoint/ListReducer.h +++ b/tools/bugpoint/ListReducer.h @@ -103,7 +103,6 @@ struct ListReducer { std::vector EmptyList; while (Changed) { Changed = false; - std::vector TrimmedList; for (unsigned i = 1; i < TheList.size()-1; ++i) { // Check interior elts if (BugpointIsInterrupted) { std::cerr << "\n\n*** Reduction Interrupted, cleaning up...\n\n";