aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/LinkAllCodegenComponents.h
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2010-09-23 04:28:54 +0000
committerLang Hames <lhames@gmail.com>2010-09-23 04:28:54 +0000
commitf70e7cc7a2871d498dbecbec2d1c3beb3da2af33 (patch)
treee6a449843c5993f31c5bed3b0f8802b53e400c0d /include/llvm/CodeGen/LinkAllCodegenComponents.h
parent38a9288f78d76ad8f43a0398230c7c420390e606 (diff)
Moved the PBQP allocator class out of the header and back in to the cpp file to hide the gory details.
Allocator instances can now be created by calling createPBQPRegisterAllocator. Tidied up use of CoalescerPair as per Jakob's suggestions. Made the new PBQPBuilder based construction process the default. The internal construction process remains in-place and available via -pbqp-builder=false for now. It will be removed shortly if the new process doesn't cause any regressions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114626 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/LinkAllCodegenComponents.h')
-rw-r--r--include/llvm/CodeGen/LinkAllCodegenComponents.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/LinkAllCodegenComponents.h b/include/llvm/CodeGen/LinkAllCodegenComponents.h
index cd8293de50..59c0482efc 100644
--- a/include/llvm/CodeGen/LinkAllCodegenComponents.h
+++ b/include/llvm/CodeGen/LinkAllCodegenComponents.h
@@ -35,7 +35,7 @@ namespace {
(void) llvm::createFastRegisterAllocator();
(void) llvm::createLinearScanRegisterAllocator();
- (void) llvm::createPBQPRegisterAllocator();
+ (void) llvm::createDefaultPBQPRegisterAllocator();
(void) llvm::createSimpleRegisterCoalescer();