Delete an unused variable.

llvm-svn: 91659
This commit is contained in:
Dan Gohman 2009-12-18 02:14:37 +00:00
parent 0da53228e6
commit 916fec41fb
1 changed files with 0 additions and 1 deletions

View File

@ -2624,7 +2624,6 @@ const SCEV *ScalarEvolution::createNodeForGEP(GEPOperator *GEP) {
// Getelementptr indicies are signed.
LocalOffset = getTruncateOrSignExtend(LocalOffset, IntPtrTy);
// Lower "inbounds" GEPs to NSW arithmetic.
bool HasNSW = GEP->isInBounds();
LocalOffset = getMulExpr(LocalOffset, getAllocSizeExpr(*GTI),
/*HasNUW=*/false, /*HasNSW=*/InBounds);
TotalOffset = getAddExpr(TotalOffset, LocalOffset,