diff options
author | Owen Anderson <resistor@mac.com> | 2009-01-13 06:05:10 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-01-13 06:05:10 +0000 |
commit | 0c2e7b9ab6d0b09a1eddf9ecaaf19af5602c8c88 (patch) | |
tree | 0eda68ed2d1826f7af6087c05fbbb626a11af3ce /include | |
parent | 1d8a76d7d51d75508159b9bb312fc51e908cb676 (diff) | |
download | external_llvm-0c2e7b9ab6d0b09a1eddf9ecaaf19af5602c8c88.zip external_llvm-0c2e7b9ab6d0b09a1eddf9ecaaf19af5602c8c88.tar.gz external_llvm-0c2e7b9ab6d0b09a1eddf9ecaaf19af5602c8c88.tar.bz2 |
Fix fallout from r62144. Evan, please double check this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62150 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/LiveIntervalAnalysis.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h index 52ee885..b87214f 100644 --- a/include/llvm/CodeGen/LiveIntervalAnalysis.h +++ b/include/llvm/CodeGen/LiveIntervalAnalysis.h @@ -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; |