forked from OSchip/llvm-project
[LoopDataPrefetch] Make more member functions private, NFC.
llvm-svn: 264798
This commit is contained in:
parent
4a09777b37
commit
85fba39390
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue