[LoopVectorize] Remove an unused private AA pointer

Thanks to the lld-x86_64-darwin13 builder for catching this first.

llvm-svn: 213488
This commit is contained in:
Hal Finkel 2014-07-20 23:28:25 +00:00
parent 46797c6960
commit 07c9bb3d87
1 changed files with 1 additions and 2 deletions

View File

@ -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).