Remove unused var

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14033 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-06-05 00:03:27 +00:00
parent 54e3e8fd37
commit e1cacce400

View File

@ -111,7 +111,6 @@ Value *SymbolTable::removeEntry(plane_iterator Plane, value_iterator Entry) {
Value *Result = Entry->second;
assert(!isa<Type>(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";