OSDN Git Service

Handle a pointer type correctly in SCEVExpander::visitAddRecExpr.
authorDan Gohman <gohman@apple.com>
Thu, 16 Apr 2009 21:34:54 +0000 (21:34 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 16 Apr 2009 21:34:54 +0000 (21:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69310 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ScalarEvolutionExpander.cpp

index 0e0eb55..c27bbdc 100644 (file)
@@ -227,6 +227,8 @@ Value *SCEVExpander::visitAddRecExpr(SCEVAddRecExpr *S) {
   // If this is a simple linear addrec, emit it now as a special case.
   if (S->isAffine()) {   // {0,+,F} --> i*F
     Value *F = expand(S->getOperand(1));
+    if (isa<PointerType>(F->getType()))
+      F = InsertCastOfTo(Instruction::PtrToInt, F, TD.getIntPtrType());
     
     // IF the step is by one, just return the inserted IV.
     if (ConstantInt *CI = dyn_cast<ConstantInt>(F))