Remove -debug output

llvm-svn: 10917
This commit is contained in:
Chris Lattner 2004-01-18 22:26:53 +00:00
parent e6f99bd3a9
commit 979ca2fccd
1 changed files with 0 additions and 7 deletions

View File

@ -30,7 +30,6 @@
#include "llvm/SymbolTable.h"
#include "Support/STLExtras.h"
#include "Support/Statistic.h"
#include "Support/Debug.h"
#include <cstring>
#include <algorithm>
using namespace llvm;
@ -87,12 +86,6 @@ BytecodeWriter::BytecodeWriter(std::deque<unsigned char> &o, const Module *M)
outputConstantsInPlane(Plane, ValNo); // Write out the types
}
DEBUG(for (unsigned i = 0; i != Type::TypeTyID; ++i)
if (Table.getPlane(i).size())
std::cerr << " ModuleLevel["
<< *Type::getPrimitiveType((Type::PrimitiveID)i)
<< "] = " << Table.getPlane(i).size() << "\n");
// The ModuleInfoBlock follows directly after the type information
outputModuleInfoBlock(M);