diff options
author | Lang Hames <lhames@gmail.com> | 2010-07-26 01:49:41 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2010-07-26 01:49:41 +0000 |
commit | 6f4e4df1005e67917ebfcf66c8ea5bad5f587155 (patch) | |
tree | 35e2426451518a9f2e80c0ff256f8be1b95a1628 /include/llvm/CodeGen | |
parent | 84ae206c976c76761e307e5c45f8170d0b61015f (diff) | |
download | external_llvm-6f4e4df1005e67917ebfcf66c8ea5bad5f587155.zip external_llvm-6f4e4df1005e67917ebfcf66c8ea5bad5f587155.tar.gz external_llvm-6f4e4df1005e67917ebfcf66c8ea5bad5f587155.tar.bz2 |
Factored out a bit of common code to mark VNInfos for deletion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/LiveInterval.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index a0aea23..2e0651d 100644 --- a/include/llvm/CodeGen/LiveInterval.h +++ b/include/llvm/CodeGen/LiveInterval.h @@ -545,6 +545,7 @@ namespace llvm { Ranges::iterator addRangeFrom(LiveRange LR, Ranges::iterator From); void extendIntervalEndTo(Ranges::iterator I, SlotIndex NewEnd); Ranges::iterator extendIntervalStartTo(Ranges::iterator I, SlotIndex NewStr); + void markValNoForDeletion(VNInfo *V); LiveInterval& operator=(const LiveInterval& rhs); // DO NOT IMPLEMENT |