Remove unused var

llvm-svn: 14033
This commit is contained in:
Chris Lattner 2004-06-05 00:03:27 +00:00
parent f609ec6329
commit cf111f5951

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";