aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/RegAllocGreedy.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/RegAllocGreedy.cpp
parent655739de7b09dcfecd9f3e5f1734e53ec90a19f3 (diff)
downloadexternal_llvm-5b220213bfe9c37c2bb41a7ae0804e06a14f1007.zip
external_llvm-5b220213bfe9c37c2bb41a7ae0804e06a14f1007.tar.gz
external_llvm-5b220213bfe9c37c2bb41a7ae0804e06a14f1007.tar.bz2
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/RegAllocGreedy.cpp')
-rw-r--r--lib/CodeGen/RegAllocGreedy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp
index b2db2de..d0e6a64 100644
--- a/lib/CodeGen/RegAllocGreedy.cpp
+++ b/lib/CodeGen/RegAllocGreedy.cpp
@@ -234,7 +234,7 @@ RAGreedy::RAGreedy(): MachineFunctionPass(ID), LRStage(RS_New) {
initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry());
- initializeRegisterCoalescerAnalysisGroup(*PassRegistry::getPassRegistry());
+ initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
initializeLiveStacksPass(*PassRegistry::getPassRegistry());
initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());