summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHal Finkel <hfinkel@anl.gov>2014-07-20 23:28:25 +0000
committerHal Finkel <hfinkel@anl.gov>2014-07-20 23:28:25 +0000
commit07c9bb3d8718a2e4649b52d044620dd33d9bffe5 (patch)
tree71954c8ada4609ca58fa75a9378479afe95d0114
parent46797c69609b4f2324057a2c7a56ff78e6902006 (diff)
downloadbcm5719-llvm-07c9bb3d8718a2e4649b52d044620dd33d9bffe5.tar.gz
bcm5719-llvm-07c9bb3d8718a2e4649b52d044620dd33d9bffe5.zip
[LoopVectorize] Remove an unused private AA pointer
Thanks to the lld-x86_64-darwin13 builder for catching this first. llvm-svn: 213488
-rw-r--r--llvm/lib/Transforms/Vectorize/LoopVectorize.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 4e8b599c9a7..13201bf11fe 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -3929,7 +3929,7 @@ public:
typedef EquivalenceClasses<MemAccessInfo> DepCandidates;
AccessAnalysis(const DataLayout *Dl, AliasAnalysis *AA, DepCandidates &DA) :
- DL(Dl), AA(AA), AST(*AA), DepCands(DA), IsRTCheckNeeded(false) {}
+ DL(Dl), AST(*AA), DepCands(DA), IsRTCheckNeeded(false) {}
/// \brief Register a load and whether it is only read from.
void addLoad(AliasAnalysis::Location &Loc, bool IsReadOnly) {
@@ -3984,7 +3984,6 @@ private:
SmallPtrSet<Value*, 16> ReadOnlyPtr;
const DataLayout *DL;
- AliasAnalysis *AA;
/// An alias set tracker to partition the access set by underlying object and
//intrinsic property (such as TBAA metadata).
OpenPOWER on IntegriCloud