From: Chris Lattner Date: Sat, 5 Jun 2004 00:03:27 +0000 (+0000) Subject: Remove unused var X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e1cacce40096f874801149fb029ec79bfb2ee35a;p=oota-llvm.git Remove unused var git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14033 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/SymbolTable.cpp b/lib/VMCore/SymbolTable.cpp index 9e6a77bf672..13bbef145ab 100644 --- a/lib/VMCore/SymbolTable.cpp +++ b/lib/VMCore/SymbolTable.cpp @@ -111,7 +111,6 @@ Value *SymbolTable::removeEntry(plane_iterator Plane, value_iterator Entry) { Value *Result = Entry->second; assert(!isa(Result) && "Can't remove types through this interface."); - const Type *Ty = Result->getType(); #if DEBUG_SYMBOL_TABLE dump(); std::cerr << " Removing Value: " << Result->getName() << "\n";