mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-18 14:31:27 +00:00
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
This commit is contained in:
parent
1d8a76d7d5
commit
0c2e7b9ab6
@ -391,6 +391,10 @@ namespace llvm {
|
|||||||
/// computeNumbering - Compute the index numbering.
|
/// computeNumbering - Compute the index numbering.
|
||||||
void computeNumbering();
|
void computeNumbering();
|
||||||
|
|
||||||
|
/// intervalIsInOneMBB - Returns true if the specified interval is entirely
|
||||||
|
/// within a single basic block.
|
||||||
|
bool intervalIsInOneMBB(const LiveInterval &li) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// computeIntervals - Compute live intervals.
|
/// computeIntervals - Compute live intervals.
|
||||||
void computeIntervals();
|
void computeIntervals();
|
||||||
@ -462,10 +466,6 @@ namespace llvm {
|
|||||||
bool anyKillInMBBAfterIdx(const LiveInterval &li, const VNInfo *VNI,
|
bool anyKillInMBBAfterIdx(const LiveInterval &li, const VNInfo *VNI,
|
||||||
MachineBasicBlock *MBB, unsigned Idx) const;
|
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
|
/// hasAllocatableSuperReg - Return true if the specified physical register
|
||||||
/// has any super register that's allocatable.
|
/// has any super register that's allocatable.
|
||||||
bool hasAllocatableSuperReg(unsigned Reg) const;
|
bool hasAllocatableSuperReg(unsigned Reg) const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user