mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-19 04:29:45 +00:00
[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
This commit is contained in:
parent
76fcace66e
commit
07d4e558b3
@ -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).
|
||||
|
Loading…
x
Reference in New Issue
Block a user