Alkis agrees that that iterative scan allocator isn't going to be worked on

in the future, remove it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2005-10-24 04:14:30 +00:00
parent 41e087c7e6
commit 8a6cd98e96
2 changed files with 1 additions and 504 deletions

View File

@ -18,7 +18,7 @@
using namespace llvm;
namespace {
enum RegAllocName { simple, local, linearscan, iterativescan };
enum RegAllocName { simple, local, linearscan };
cl::opt<RegAllocName>
RegAlloc(
@ -29,7 +29,6 @@ namespace {
clEnumVal(simple, " simple register allocator"),
clEnumVal(local, " local register allocator"),
clEnumVal(linearscan, " linear scan register allocator"),
clEnumVal(iterativescan, " iterative scan register allocator"),
clEnumValEnd),
cl::init(linearscan));
}
@ -45,8 +44,6 @@ FunctionPass *llvm::createRegisterAllocator() {
return createLocalRegisterAllocator();
case linearscan:
return createLinearScanRegisterAllocator();
case iterativescan:
return createIterativeScanRegisterAllocator();
}
}