From b05cb31bdfad2c37df7e58f539cc1cf6e549f236 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 27 Feb 2007 08:34:09 +0000 Subject: [PATCH] Allow the AsmWriter to print out arbitrary precision integers. llvm-svn: 34664 --- lib/VMCore/AsmWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index fbe5f07d8a3..739c52129e4 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -464,7 +464,7 @@ static void WriteConstantInt(std::ostream &Out, const Constant *CV, if (CI->getType() == Type::Int1Ty) Out << (CI->getZExtValue() ? "true" : "false"); else - Out << CI->getSExtValue(); + Out << CI->getValue().toString(10,/*wantSigned=*/true); } else if (const ConstantFP *CFP = dyn_cast(CV)) { // We would like to output the FP constant value in exponential notation, // but we cannot do this if doing so will lose precision. Check here to