summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SplitKit.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-06-26 22:34:10 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-06-26 22:34:10 +0000
commit5b220213bfe9c37c2bb41a7ae0804e06a14f1007 (patch)
treef5498354354616f9a6c20c65c122bd3f6ebda753 /lib/CodeGen/SplitKit.cpp
parent655739de7b09dcfecd9f3e5f1734e53ec90a19f3 (diff)
downloadllvm-5b220213bfe9c37c2bb41a7ae0804e06a14f1007.tar.gz
llvm-5b220213bfe9c37c2bb41a7ae0804e06a14f1007.tar.bz2
llvm-5b220213bfe9c37c2bb41a7ae0804e06a14f1007.tar.xz
There is only one register coalescer. Merge it into the base class and
remove the analysis group. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SplitKit.cpp')
-rw-r--r--lib/CodeGen/SplitKit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SplitKit.cpp b/lib/CodeGen/SplitKit.cpp
index bf27cc8657..18f315ab20 100644
--- a/lib/CodeGen/SplitKit.cpp
+++ b/lib/CodeGen/SplitKit.cpp
@@ -122,7 +122,7 @@ void SplitAnalysis::analyzeUses() {
// Compute per-live block info.
if (!calcLiveBlockInfo()) {
// FIXME: calcLiveBlockInfo found inconsistencies in the live range.
- // I am looking at you, SimpleRegisterCoalescing!
+ // I am looking at you, RegisterCoalescer!
DidRepairRange = true;
++NumRepairs;
DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
@@ -165,7 +165,7 @@ bool SplitAnalysis::calcLiveBlockInfo() {
tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
// If the block contains no uses, the range must be live through. At one
- // point, SimpleRegisterCoalescing could create dangling ranges that ended
+ // point, RegisterCoalescer could create dangling ranges that ended
// mid-block.
if (UseI == UseE || *UseI >= Stop) {
++NumThroughBlocks;