summaryrefslogtreecommitdiff
path: root/lib/CodeGen/Passes.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-10-24 04:14:30 +0000
committerChris Lattner <sabre@nondot.org>2005-10-24 04:14:30 +0000
commit8a6cd98e964fa42f05773cd2389e8b663ffecc6c (patch)
tree284c1831613018e7079631beac7b3bb68a30888a /lib/CodeGen/Passes.cpp
parent41e087c7e60b4d37db3c6677b9306c79693d0074 (diff)
downloadllvm-8a6cd98e964fa42f05773cd2389e8b663ffecc6c.tar.gz
llvm-8a6cd98e964fa42f05773cd2389e8b663ffecc6c.tar.bz2
llvm-8a6cd98e964fa42f05773cd2389e8b663ffecc6c.tar.xz
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
Diffstat (limited to 'lib/CodeGen/Passes.cpp')
-rw-r--r--lib/CodeGen/Passes.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/CodeGen/Passes.cpp b/lib/CodeGen/Passes.cpp
index 525bd3a9ec..a6ba12072e 100644
--- a/lib/CodeGen/Passes.cpp
+++ b/lib/CodeGen/Passes.cpp
@@ -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();
}
}