From: Reid Spencer Date: Mon, 18 Dec 2006 04:22:56 +0000 (+0000) Subject: Revert last patch. ConstantInt isn't quite ready for signlessness. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=fdf15e1dc8f1c4cb48a16eb20c536072ca7188fd Revert last patch. ConstantInt isn't quite ready for signlessness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32650 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp index 32414721a7f..170df732723 100644 --- a/lib/VMCore/ConstantFold.cpp +++ b/lib/VMCore/ConstantFold.cpp @@ -875,14 +875,16 @@ Constant *llvm::ConstantFoldCastInstruction(unsigned opc, const Constant *V, // A ZExt always produces an unsigned value so we need to cast the value // now before we try to cast it to the destination type if (isa(V)) - V = ConstantInt::get(SrcTy, cast(V)->getZExtValue()); + V = ConstantInt::get(SrcTy->getUnsignedVersion(), + cast(V)->getZExtValue()); break; case Instruction::SIToFP: case Instruction::SExt: // A SExt always produces a signed value so we need to cast the value // now before we try to cast it to the destiniation type. if (isa(V)) - V = ConstantInt::get(SrcTy, cast(V)->getSExtValue()); + V = ConstantInt::get(SrcTy->getSignedVersion(), + cast(V)->getSExtValue()); else if (const ConstantBool *CB = dyn_cast(V)) V = ConstantInt::get(Type::SByteTy, CB->getValue() ? -1 : 0);