diff options
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index a3ab22c04c..6b644219e1 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -26,7 +26,6 @@ #include "llvm/Instructions.h" #include "llvm/Module.h" #include "llvm/SymbolTable.h" -#include "llvm/Assembly/Writer.h" #include "llvm/Support/CFG.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/STLExtras.h" @@ -1312,9 +1311,6 @@ void Constant::print(std::ostream &o) const { if (this == 0) { o << "<null> constant value\n"; return; } o << ' ' << getType()->getDescription() << ' '; - - std::map<const Type *, std::string> TypeTable; - WriteConstantInt(o, this, false, TypeTable, 0); } void Type::print(std::ostream &o) const { |