Fix fallout from r62144. Evan, please double check this.

llvm-svn: 62150
This commit is contained in:
Owen Anderson 2009-01-13 06:05:10 +00:00
parent 34bafa4a40
commit b282d1b6ff
1 changed files with 4 additions and 4 deletions

View File

@ -391,6 +391,10 @@ namespace llvm {
/// computeNumbering - Compute the index numbering.
void computeNumbering();
/// intervalIsInOneMBB - Returns true if the specified interval is entirely
/// within a single basic block.
bool intervalIsInOneMBB(const LiveInterval &li) const;
private:
/// computeIntervals - Compute live intervals.
void computeIntervals();
@ -462,10 +466,6 @@ namespace llvm {
bool anyKillInMBBAfterIdx(const LiveInterval &li, const VNInfo *VNI,
MachineBasicBlock *MBB, unsigned Idx) const;
/// intervalIsInOneMBB - Returns true if the specified interval is entirely
/// within a single basic block.
bool intervalIsInOneMBB(const LiveInterval &li) const;
/// hasAllocatableSuperReg - Return true if the specified physical register
/// has any super register that's allocatable.
bool hasAllocatableSuperReg(unsigned Reg) const;