aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-19 14:08:10 +0000
committerChris Lattner <sabre@nondot.org>2004-07-19 14:08:10 +0000
commit1c5c0444f1326b58cf05015651f36f2b04ca322d (patch)
tree4803d0803832693904fc94ca92b3fe7fa10f12e0 /include
parentc49c872a1ac4ccd13ebabd161597aef6de909077 (diff)
downloadexternal_llvm-1c5c0444f1326b58cf05015651f36f2b04ca322d.zip
external_llvm-1c5c0444f1326b58cf05015651f36f2b04ca322d.tar.gz
external_llvm-1c5c0444f1326b58cf05015651f36f2b04ca322d.tar.bz2
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 'include')
-rw-r--r--include/llvm/CodeGen/LiveIntervalAnalysis.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h
index bb3c171..dc15008 100644
--- a/include/llvm/CodeGen/LiveIntervalAnalysis.h
+++ b/include/llvm/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)