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
This commit is contained in:
Chris Lattner 2002-05-10 18:54:35 +00:00
parent b498cce6b2
commit d6b60805e8

View File

@ -11,6 +11,7 @@
#include "llvm/Function.h"
#include "Support/StringExtras.h"
#include <iostream>
#include <algorithm>
using std::string;
using std::pair;
@ -323,10 +324,6 @@ void SymbolTable::refineAbstractType(const DerivedType *OldType,
}
}
#ifndef NDEBUG
#include <algorithm>
static void DumpVal(const pair<const string, Value *> &V) {
std::cout << " '" << V.first << "' = ";
V.second->dump();
@ -349,5 +346,3 @@ void SymbolTable::dump() const {
ParentSymTab->dump();
}
}
#endif