[llvm-commits] [llvm] r43064 - /llvm/trunk/include/llvm/CodeGen/LiveInterval.h
Evan Cheng
evan.cheng at apple.com
Tue Oct 16 19:16:40 PDT 2007
Author: evancheng
Date: Tue Oct 16 21:16:40 2007
New Revision: 43064
URL: http://llvm.org/viewvc/llvm-project?rev=43064&view=rev
Log:
Update comments.
Modified:
llvm/trunk/include/llvm/CodeGen/LiveInterval.h
Modified: llvm/trunk/include/llvm/CodeGen/LiveInterval.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/LiveInterval.h?rev=43064&r1=43063&r2=43064&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/LiveInterval.h (original)
+++ llvm/trunk/include/llvm/CodeGen/LiveInterval.h Tue Oct 16 21:16:40 2007
@@ -241,10 +241,11 @@
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#
More information about the llvm-commits
mailing list