diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-06-26 22:34:10 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-06-26 22:34:10 +0000 |
commit | 676c405acb2e07167cc2f3973b119e6bbbf0c966 (patch) | |
tree | d9b576e42e077a38c45005050a26e257b006319a /llvm/lib/CodeGen/SplitKit.cpp | |
parent | 95ce4f67a33699e40500005a179b0ef17722d471 (diff) | |
download | bcm5719-llvm-676c405acb2e07167cc2f3973b119e6bbbf0c966.tar.gz bcm5719-llvm-676c405acb2e07167cc2f3973b119e6bbbf0c966.zip |
There is only one register coalescer. Merge it into the base class and
remove the analysis group.
llvm-svn: 133899
Diffstat (limited to 'llvm/lib/CodeGen/SplitKit.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SplitKit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SplitKit.cpp b/llvm/lib/CodeGen/SplitKit.cpp index bf27cc86574..18f315ab20d 100644 --- a/llvm/lib/CodeGen/SplitKit.cpp +++ b/llvm/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; |