Fix compile error when DEBUG_SYMBOL_TABLE is defined.

llvm-svn: 28537
This commit is contained in:
Vladimir Prus 2006-05-29 12:45:15 +00:00
parent 631bd45185
commit 8a3a4fb0ba

View File

@ -21,7 +21,7 @@
using namespace llvm;
#define DEBUG_SYMBOL_TABLE 0
#define DEBUG_SYMBOL_TABLE 1
#define DEBUG_ABSTYPE 0
SymbolTable::~SymbolTable() {
@ -167,7 +167,7 @@ Type* SymbolTable::remove(type_iterator Entry) {
#if DEBUG_SYMBOL_TABLE
dump();
std::cerr << " Removing Value: " << Result->getName() << "\n";
std::cerr << " Removing type: " << Entry->first << "\n";
#endif
tmap.erase(Entry);