completely eliminate a temporary vector

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34162 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-02-10 20:33:15 +00:00
parent 7f6b9d2f1a
commit 309f87e34a

View File

@ -133,8 +133,8 @@ static Constant *SymbolicallyEvaluateGEP(Constant** Ops, unsigned NumOps,
break;
}
if (isFoldableGEP) {
std::vector<Value*> NewOps(Ops+1, Ops+NumOps);
uint64_t Offset = TD->getIndexedOffset(Ptr->getType(), NewOps);
uint64_t Offset = TD->getIndexedOffset(Ptr->getType(),
(Value**)Ops+1, NumOps-1);
Constant *C = ConstantInt::get(TD->getIntPtrType(), Offset);
return ConstantExpr::getIntToPtr(C, ResultTy);
}