diff options
Diffstat (limited to 'lib/VMCore/SymbolTable.cpp')
-rw-r--r-- | lib/VMCore/SymbolTable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/SymbolTable.cpp b/lib/VMCore/SymbolTable.cpp index 3ac8ddf..d82c44f 100644 --- a/lib/VMCore/SymbolTable.cpp +++ b/lib/VMCore/SymbolTable.cpp @@ -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); |