From 349a2ebbb382917bc368ef3b11b9e288c8a1b00c Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sat, 12 Sep 2009 21:56:48 +0000 Subject: [PATCH] Fix the build when DEBUG_SYMBOL_TABLE is set. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81633 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/TypeSymbolTable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/TypeSymbolTable.cpp b/lib/VMCore/TypeSymbolTable.cpp index eba2e00c2ae..f31ea6693e0 100644 --- a/lib/VMCore/TypeSymbolTable.cpp +++ b/lib/VMCore/TypeSymbolTable.cpp @@ -79,7 +79,7 @@ Type* TypeSymbolTable::remove(iterator Entry) { #if DEBUG_SYMBOL_TABLE dump(); - errs() << " Removing Value: " << Result->getName() << "\n"; + errs() << " Removing Value: " << Result->getDescription() << "\n"; #endif tmap.erase(Entry);