summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-30 20:15:32 +0000
committerChris Lattner <sabre@nondot.org>2003-09-30 20:15:32 +0000
commit799e0802b25e28a150991d5507d99cf19bb80955 (patch)
tree9227d11948351dda8905dff0510baa0318eca6fd /include
parent9cd3fe9c6dadac517f27897634aedfd9e437b485 (diff)
downloadllvm-799e0802b25e28a150991d5507d99cf19bb80955.tar.gz
llvm-799e0802b25e28a150991d5507d99cf19bb80955.tar.bz2
llvm-799e0802b25e28a150991d5507d99cf19bb80955.tar.xz
This got merged into Passes.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/RegisterAllocation.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/llvm/CodeGen/RegisterAllocation.h b/include/llvm/CodeGen/RegisterAllocation.h
deleted file mode 100644
index 60d0df511a..0000000000
--- a/include/llvm/CodeGen/RegisterAllocation.h
+++ /dev/null
@@ -1,19 +0,0 @@
-//===-- CodeGen/RegisterAllocation.h - RegAlloc Pass ------------*- C++ -*-===//
-//
-// This pass register allocates a module, a method at a time.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_CODEGEN_REGISTERALLOCATION_H
-#define LLVM_CODEGEN_REGISTERALLOCATION_H
-
-class FunctionPass;
-class TargetMachine;
-
-//----------------------------------------------------------------------------
-// Entry point for register allocation for a module
-//----------------------------------------------------------------------------
-
-FunctionPass *getRegisterAllocator(TargetMachine &T);
-
-#endif