From d6b60805e8ff00c20321edf2a126ce6168439247 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 10 May 2002 18:54:35 +0000 Subject: We actually need this code for the release build to prevent link errors, un#ifdef it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2606 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/SymbolTable.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'lib/VMCore') diff --git a/lib/VMCore/SymbolTable.cpp b/lib/VMCore/SymbolTable.cpp index 64674ca..dba5dcb 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 -- cgit v1.1