diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-19 14:08:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-19 14:08:10 +0000 |
commit | 1c5c0444f1326b58cf05015651f36f2b04ca322d (patch) | |
tree | 4803d0803832693904fc94ca92b3fe7fa10f12e0 /lib/CodeGen/LiveIntervalAnalysis.h | |
parent | c49c872a1ac4ccd13ebabd161597aef6de909077 (diff) |
Split joinIntervals into two methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15003 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.h')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.h b/lib/CodeGen/LiveIntervalAnalysis.h index bb3c171af5..dc1500867e 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.h +++ b/lib/CodeGen/LiveIntervalAnalysis.h @@ -169,6 +169,10 @@ namespace llvm { /// joinIntervals - join compatible live intervals void joinIntervals(); + /// joinIntervalsInMachineBB - Join intervals based on move + /// instructions in the specified basic block. + void joinIntervalsInMachineBB(MachineBasicBlock *MBB); + /// handleRegisterDef - update intervals for a register def /// (calls handlePhysicalRegisterDef and /// handleVirtualRegisterDef) |