aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/RegAllocBase.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-01-11 22:52:11 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-01-11 22:52:11 +0000
commit078203f301baaa1fc96e172708f4bf7f9c7dcf82 (patch)
treeefb77c4ef25365c58af36e02dd0a4953ab0c14f4 /lib/CodeGen/RegAllocBase.h
parentccc9581e8b79b4216cb1143344bdae9342722d5d (diff)
downloadexternal_llvm-078203f301baaa1fc96e172708f4bf7f9c7dcf82.zip
external_llvm-078203f301baaa1fc96e172708f4bf7f9c7dcf82.tar.gz
external_llvm-078203f301baaa1fc96e172708f4bf7f9c7dcf82.tar.bz2
Cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147975 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocBase.h')
-rw-r--r--lib/CodeGen/RegAllocBase.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/CodeGen/RegAllocBase.h b/lib/CodeGen/RegAllocBase.h
index 0316421..72620f7 100644
--- a/lib/CodeGen/RegAllocBase.h
+++ b/lib/CodeGen/RegAllocBase.h
@@ -49,11 +49,6 @@ class VirtRegMap;
class LiveIntervals;
class Spiller;
-// Forward declare a priority queue of live virtual registers. If an
-// implementation needs to prioritize by anything other than spill weight, then
-// this will become an abstract base class with virtual calls to push/get.
-class LiveVirtRegQueue;
-
/// RegAllocBase provides the register allocation driver and interface that can
/// be extended to add interesting heuristics.
///
@@ -121,10 +116,6 @@ protected:
// The top-level driver. The output is a VirtRegMap that us updated with
// physical register assignments.
- //
- // If an implementation wants to override the LiveInterval comparator, we
- // should modify this interface to allow passing in an instance derived from
- // LiveVirtRegQueue.
void allocatePhysRegs();
// Get a temporary reference to a Spiller instance.