mirror of
https://github.com/intel/llvm.git
synced 2026-01-21 03:21:40 +08:00
Force the greedy register allocator to be linked alongside linear scan.
This means that the new register allocator can be used with 'clang -mllvm -regalloc=greedy'. llvm-svn: 129764
This commit is contained in:
@@ -55,6 +55,11 @@ FunctionPass *llvm::createRegisterAllocator(CodeGenOpt::Level OptLevel) {
|
||||
RegisterRegAlloc::setDefault(RegAlloc);
|
||||
}
|
||||
|
||||
// This forces linking of the greedy register allocator, so -regalloc=greedy
|
||||
// works in clang.
|
||||
if (Ctor == createGreedyRegisterAllocator)
|
||||
return createGreedyRegisterAllocator();
|
||||
|
||||
if (Ctor != createDefaultRegisterAllocator)
|
||||
return Ctor();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user