forked from OSchip/llvm-project
RegisterPressure: There is no need to make discoverLive{In|Out} public
llvm-svn: 254369
This commit is contained in:
parent
f9f8b92d93
commit
7699ed7814
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue