diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 6b644219e13..cc8c5a12324 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1311,6 +1311,9 @@ void Constant::print(std::ostream &o) const { if (this == 0) { o << " constant value\n"; return; } o << ' ' << getType()->getDescription() << ' '; + + std::map TypeTable; + WriteConstantInt(o, this, false, TypeTable, 0); } void Type::print(std::ostream &o) const {