diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-06-17 07:21:38 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-06-17 07:21:38 +0000 |
commit | ecbd16829a4d793983a4b2f3670c3c44801a07f2 (patch) | |
tree | b04b4975da863f812773f3f2920de42569405e03 /llvm/lib/Analysis/LoopAccessAnalysis.cpp | |
parent | ac80dc753228af5f1b415bc9fa9834aeba19122b (diff) | |
download | bcm5719-llvm-ecbd16829a4d793983a4b2f3670c3c44801a07f2.tar.gz bcm5719-llvm-ecbd16829a4d793983a4b2f3670c3c44801a07f2.zip |
[PM/AA] Remove the UnknownSize static member from AliasAnalysis.
This is now living in MemoryLocation, which is what it pertains to. It
is also an enum there rather than a static data member which is left
never defined.
llvm-svn: 239886
Diffstat (limited to 'llvm/lib/Analysis/LoopAccessAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopAccessAnalysis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/LoopAccessAnalysis.cpp b/llvm/lib/Analysis/LoopAccessAnalysis.cpp index 3dcb13b5360..8425b75f3ff 100644 --- a/llvm/lib/Analysis/LoopAccessAnalysis.cpp +++ b/llvm/lib/Analysis/LoopAccessAnalysis.cpp @@ -212,7 +212,7 @@ public: /// \brief Register a load and whether it is only read from. void addLoad(MemoryLocation &Loc, bool IsReadOnly) { Value *Ptr = const_cast<Value*>(Loc.Ptr); - AST.add(Ptr, AliasAnalysis::UnknownSize, Loc.AATags); + AST.add(Ptr, MemoryLocation::UnknownSize, Loc.AATags); Accesses.insert(MemAccessInfo(Ptr, false)); if (IsReadOnly) ReadOnlyPtr.insert(Ptr); @@ -221,7 +221,7 @@ public: /// \brief Register a store. void addStore(MemoryLocation &Loc) { Value *Ptr = const_cast<Value*>(Loc.Ptr); - AST.add(Ptr, AliasAnalysis::UnknownSize, Loc.AATags); + AST.add(Ptr, MemoryLocation::UnknownSize, Loc.AATags); Accesses.insert(MemAccessInfo(Ptr, true)); } |