Remove some unnecessary includes of PseudoSourceValue.h.
[oota-llvm.git] / lib / VMCore / ValueSymbolTable.cpp
index 254bf06439d9b2b36f00a5e61583fe7d921f4af5..f1c970361a509780293ae8c7364f699bed89eb5a 100644 (file)
@@ -25,7 +25,7 @@ ValueSymbolTable::~ValueSymbolTable() {
 #ifndef NDEBUG   // Only do this in -g mode...
   for (iterator VI = vmap.begin(), VE = vmap.end(); VI != VE; ++VI)
     dbgs() << "Value still in symbol table! Type = '"
-           << VI->getValue()->getType()->getDescription() << "' Name = '"
+           << *VI->getValue()->getType() << "' Name = '"
            << VI->getKeyData() << "'\n";
   assert(vmap.empty() && "Values remain in symbol table!");
 #endif