Remove -debug output
authorChris Lattner <sabre@nondot.org>
Sun, 18 Jan 2004 22:26:53 +0000 (22:26 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 18 Jan 2004 22:26:53 +0000 (22:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10917 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/Writer.cpp

index 2fcc863c3c6efb3d3197b649bb17ba9bb8e1a980..d0b04d2dabfdc135be875c34ac459243ccf22cbd 100644 (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);