From: Dan Gohman Date: Wed, 21 Apr 2010 16:04:04 +0000 (+0000) Subject: Make ScalarEvolution::getConstant support pointer types, for consistency X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a560fd28c01367ffd7b64bbeace856b50af1753c;p=oota-llvm.git Make ScalarEvolution::getConstant support pointer types, for consistency with ScalarEvolution's overall approach to pointer types. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102003 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 14e6bcb1815..d528be095f9 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -188,8 +188,8 @@ const SCEV *ScalarEvolution::getConstant(const APInt& Val) { const SCEV * ScalarEvolution::getConstant(const Type *Ty, uint64_t V, bool isSigned) { - return getConstant( - ConstantInt::get(cast(Ty), V, isSigned)); + const IntegerType *ITy = cast(getEffectiveSCEVType(Ty)); + return getConstant(ConstantInt::get(ITy, V, isSigned)); } const Type *SCEVConstant::getType() const { return V->getType(); }