diff --git a/lib/VMCore/SymbolTable.cpp b/lib/VMCore/SymbolTable.cpp index 64674ca4c66..dba5dcbf864 100644 --- a/lib/VMCore/SymbolTable.cpp +++ b/lib/VMCore/SymbolTable.cpp @@ -11,6 +11,7 @@ #include "llvm/Function.h" #include "Support/StringExtras.h" #include +#include using std::string; using std::pair; @@ -323,10 +324,6 @@ void SymbolTable::refineAbstractType(const DerivedType *OldType, } } - -#ifndef NDEBUG -#include - static void DumpVal(const pair &V) { std::cout << " '" << V.first << "' = "; V.second->dump(); @@ -349,5 +346,3 @@ void SymbolTable::dump() const { ParentSymTab->dump(); } } - -#endif