Allow the AsmWriter to print out arbitrary precision integers.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 27 Feb 2007 08:34:09 +0000 (08:34 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 27 Feb 2007 08:34:09 +0000 (08:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34664 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index fbe5f07d8a39b95f4690306b8e22ca7125bf4081..739c52129e4083cf0d6e5542b8af57d3f1745fd9 100644 (file)
@@ -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<ConstantFP>(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