[LoopDataPrefetch] Make more member functions private, NFC.

llvm-svn: 264798
This commit is contained in:
Adam Nemet 2016-03-29 22:40:02 +00:00
parent 4a09777b37
commit 85fba39390
1 changed files with 2 additions and 1 deletions

View File

@ -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;