diff options
author | Dan Gohman <gohman@apple.com> | 2009-12-18 02:14:37 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-12-18 02:14:37 +0000 |
commit | 916fec41fb3e0645a9e2bc5e36458391ba79550d (patch) | |
tree | 60b61a5e135afafb693aa60eccc61cd7b00ac821 /llvm/lib/Analysis/ScalarEvolution.cpp | |
parent | 0da53228e6cf7bb33b7432fa2b7cbad23e12f0e1 (diff) | |
download | bcm5719-llvm-916fec41fb3e0645a9e2bc5e36458391ba79550d.tar.gz bcm5719-llvm-916fec41fb3e0645a9e2bc5e36458391ba79550d.zip |
Delete an unused variable.
llvm-svn: 91659
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 551c25f07c3..75572a7ba20 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -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, |