RegisterPressure: There is no need to make discoverLive{In|Out} public

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254369 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Matthias Braun 2015-12-01 04:19:58 +00:00
parent 85e0db955c
commit acac7f59d5

View File

@ -365,9 +365,6 @@ public:
return CurrSetPressure;
}
void discoverLiveOut(unsigned Reg);
void discoverLiveIn(unsigned Reg);
bool isTopClosed() const;
bool isBottomClosed() const;
@ -442,6 +439,9 @@ public:
void dump() const;
protected:
void discoverLiveOut(unsigned Reg);
void discoverLiveIn(unsigned Reg);
const LiveRange *getLiveRange(unsigned Reg) const;
void increaseRegPressure(ArrayRef<unsigned> Regs);