summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SplitKit.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-03-02 00:06:15 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-03-02 00:06:15 +0000
commit9763e2bf39b84f18bd464b0cda61fe1cd98dcaae (patch)
tree5dc7d40b83ab0a2124e236fb408b680447f81bdc /lib/CodeGen/SplitKit.h
parentedb87555e466e781087e18936f427816c952f3e7 (diff)
downloadllvm-9763e2bf39b84f18bd464b0cda61fe1cd98dcaae.tar.gz
llvm-9763e2bf39b84f18bd464b0cda61fe1cd98dcaae.tar.bz2
llvm-9763e2bf39b84f18bd464b0cda61fe1cd98dcaae.tar.xz
Move LiveIntervalMap::extendTo into LiveInterval itself.
This method could probably be used by LiveIntervalAnalysis::shrinkToUses, and now it can use extendIntervalEndTo() which coalesces ranges. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126803 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SplitKit.h')
-rw-r--r--lib/CodeGen/SplitKit.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/CodeGen/SplitKit.h b/lib/CodeGen/SplitKit.h
index a77223dbd6..d149e428ed 100644
--- a/lib/CodeGen/SplitKit.h
+++ b/lib/CodeGen/SplitKit.h
@@ -205,11 +205,6 @@ public:
/// If simple is not NULL, *simple will indicate if ParentVNI is a simply
/// mapped value.
VNInfo *mapValue(const VNInfo *ParentVNI, SlotIndex Idx, bool *simple = 0);
-
- // extendTo - Find the last LI value defined in MBB at or before Idx. The
- // parentli is assumed to be live at Idx. Extend the live range to include
- // Idx. Return the found VNInfo, or NULL.
- VNInfo *extendTo(const MachineBasicBlock *MBB, SlotIndex Idx);
};