Re: [llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp ConstantFold.cpp

2007-02-27 Thread Chris Lattner
> @@ -464,7 +464,7 @@ > if (CI->getType() == Type::Int1Ty) >Out << (CI->getZExtValue() ? "true" : "false"); > else > - Out << CI->getValue().toString(10,/*wantSigned=*/true); > + Out << CI->getValue().toStringSigned(10); Thanks! >case Instruction::UIToFP: > i

[llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp ConstantFold.cpp

2007-02-27 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: AsmWriter.cpp updated: 1.262 -> 1.263 ConstantFold.cpp updated: 1.141 -> 1.142 --- Log message: Adjust to changes in the APInt interface. --- Diffs of the changes: (+5 -5) AsmWriter.cpp|2 +- ConstantFold.cpp |8 2 files changed,