diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-10-17 02:16:40 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-10-17 02:16:40 +0000 |
commit | 855f731c77339ba356d5a3ab4eda95dc413de56f (patch) | |
tree | 75ab8b4b3638fc6ab73715a5b25bb534aae6b7cc /include | |
parent | 6ee4561ba73ca1f619b771c344e9a7f9265d7f5c (diff) | |
download | external_llvm-855f731c77339ba356d5a3ab4eda95dc413de56f.zip external_llvm-855f731c77339ba356d5a3ab4eda95dc413de56f.tar.gz external_llvm-855f731c77339ba356d5a3ab4eda95dc413de56f.tar.bz2 |
Update comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43064 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/LiveInterval.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index c5e405d..69936a0 100644 --- a/include/llvm/CodeGen/LiveInterval.h +++ b/include/llvm/CodeGen/LiveInterval.h @@ -241,10 +241,11 @@ namespace llvm { void MergeInClobberRanges(const LiveInterval &Clobbers, BumpPtrAllocator &VNInfoAllocator); - /// MergeRangesInAsValue - Merge all of the live ranges in RHS into this - /// live interval as the specified value number. The LiveRanges in RHS are - /// allowed to overlap with LiveRanges in the current interval, but only if - /// the overlapping LiveRanges have the specified value number. + /// MergeValueInAsValue - Merge all of the live ranges of a specific val# + /// in RHS into this live interval as the specified value number. + /// The LiveRanges in RHS are allowed to overlap with LiveRanges in the + /// current interval, it will replace the value numbers of the overlaped + /// live ranges with the specified value number. void MergeRangesInAsValue(const LiveInterval &RHS, VNInfo *LHSValNo); /// MergeValueInAsValue - Merge all of the live ranges of a specific val# |