summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-27 08:34:09 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-27 08:34:09 +0000
commit940685ecf554fcfd03a0b6f66e5acba2a612a70d (patch)
tree29ffd915519bf7ba31fc9f6d85dbf69fbce91a92
parent8374db81a85e992867c052254273b1adf1bc5621 (diff)
downloadllvm-940685ecf554fcfd03a0b6f66e5acba2a612a70d.tar.gz
llvm-940685ecf554fcfd03a0b6f66e5acba2a612a70d.tar.bz2
llvm-940685ecf554fcfd03a0b6f66e5acba2a612a70d.tar.xz
Allow the AsmWriter to print out arbitrary precision integers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34664 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/AsmWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp
index fbe5f07d8a..739c52129e 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<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