From 07d4e558b364390d6523063ccd90f8d532959cdc Mon Sep 17 00:00:00 2001 From: Hal Finkel Date: Sun, 20 Jul 2014 23:28:25 +0000 Subject: [PATCH] [LoopVectorize] Remove an unused private AA pointer Thanks to the lld-x86_64-darwin13 builder for catching this first. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213488 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Vectorize/LoopVectorize.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index 4e8b599c9a7..13201bf11fe 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -3929,7 +3929,7 @@ public: typedef EquivalenceClasses 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 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). -- 2.34.1