diff options
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp b/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp index f55f3193dde..82af46e393c 100644 --- a/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp +++ b/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp @@ -71,13 +71,14 @@ namespace {      }      bool runOnFunction(Function &F) override; + +  private:      bool runOnLoop(Loop *L);      /// \brief Check if the the stride of the accesses is large enough to      /// warrant a prefetch.      bool isStrideLargeEnough(const SCEVAddRecExpr *AR); -  private:      AssumptionCache *AC;      LoopInfo *LI;      ScalarEvolution *SE;  | 

