aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/Passes.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-09-17 05:48:07 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-09-17 05:48:07 +0000
commitf436463dbd35ea816163a053b304d9fef9e0cf25 (patch)
tree3e7ecafac9b6896ef70f371d15235768dabfb764 /include/llvm/CodeGen/Passes.h
parentd7bd78e36e1d3adfc90a4f95b2cc849d38af1b24 (diff)
downloadexternal_llvm-f436463dbd35ea816163a053b304d9fef9e0cf25.zip
external_llvm-f436463dbd35ea816163a053b304d9fef9e0cf25.tar.gz
external_llvm-f436463dbd35ea816163a053b304d9fef9e0cf25.tar.bz2
Remove simple regalloc. It has bit rotted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82127 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/Passes.h')
-rw-r--r--include/llvm/CodeGen/Passes.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/Passes.h b/include/llvm/CodeGen/Passes.h
index b0db4c9..1e7115e 100644
--- a/include/llvm/CodeGen/Passes.h
+++ b/include/llvm/CodeGen/Passes.h
@@ -87,12 +87,6 @@ namespace llvm {
///
FunctionPass *createRegisterAllocator();
- /// SimpleRegisterAllocation Pass - This pass converts the input machine code
- /// from SSA form to use explicit registers by spilling every register. Wow,
- /// great policy huh?
- ///
- FunctionPass *createSimpleRegisterAllocator();
-
/// LocalRegisterAllocation Pass - This pass register allocates the input code
/// a basic block at a time, yielding code better than the simple register
/// allocator, but not as good as a global allocator.