aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Writer/Writer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-01-18 22:26:53 +0000
committerChris Lattner <sabre@nondot.org>2004-01-18 22:26:53 +0000
commit33522d4f2553afbcba69aab39da438782fb0505c (patch)
treeca63b77d6be88ebbb8751215a244cf9ecb46c9ec /lib/Bytecode/Writer/Writer.cpp
parent8d763d25ecf02f2704f6192a8f96bfe35aad6d98 (diff)
Remove -debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10917 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/Writer.cpp')
-rw-r--r--lib/Bytecode/Writer/Writer.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp
index 2fcc863c3c..d0b04d2dab 100644
--- a/lib/Bytecode/Writer/Writer.cpp
+++ b/lib/Bytecode/Writer/Writer.cpp
@@ -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);