Cleanup. Clarify LSRInstance public methods.

llvm-svn: 146459
This commit is contained in:
Andrew Trick 2011-12-13 00:55:33 +00:00
parent bfa576fe8e
commit dc18e383b7
1 changed files with 1 additions and 1 deletions

View File

@ -1405,7 +1405,6 @@ class LSRInstance {
LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
public:
void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
void CountRegisters(const Formula &F, size_t LUIdx);
@ -1466,6 +1465,7 @@ public:
void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
Pass *P);
public:
LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
bool getChanged() const { return Changed; }