diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 12:09:19 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 12:09:19 +0000 |
commit | aa0ab6389ad10ff01462e31ce8baefe3e6cd4bfc (patch) | |
tree | 592d652e5e48a8a34acda1b5aa409494cb9debe9 /llvm/lib/Analysis/MemoryDependenceAnalysis.cpp | |
parent | 64396b069a03a58f796de2f8c6f3543f0cd4ff91 (diff) | |
download | bcm5719-llvm-aa0ab6389ad10ff01462e31ce8baefe3e6cd4bfc.tar.gz bcm5719-llvm-aa0ab6389ad10ff01462e31ce8baefe3e6cd4bfc.zip |
[Modules] Move the PredIteratorCache into the IR library -- it is
hardcoded to use IR BasicBlocks.
llvm-svn: 202835
Diffstat (limited to 'llvm/lib/Analysis/MemoryDependenceAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/MemoryDependenceAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp b/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp index 5c481fb446f..29c8513cab6 100644 --- a/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -29,8 +29,8 @@ #include "llvm/IR/Instructions.h" #include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/LLVMContext.h" +#include "llvm/IR/PredIteratorCache.h" #include "llvm/Support/Debug.h" -#include "llvm/Support/PredIteratorCache.h" using namespace llvm; STATISTIC(NumCacheNonLocal, "Number of fully cached non-local responses"); |