From cf111f59514044dc97d48811c7ff55ee31115c43 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 5 Jun 2004 00:03:27 +0000 Subject: [PATCH] Remove unused var llvm-svn: 14033 --- lib/VMCore/SymbolTable.cpp | 1 - 1 file changed, 1 deletion(-) 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";