This got merged into Passes.h
authorChris Lattner <sabre@nondot.org>
Tue, 30 Sep 2003 20:15:32 +0000 (20:15 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 30 Sep 2003 20:15:32 +0000 (20:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8796 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/RegisterAllocation.h [deleted file]

diff --git a/include/llvm/CodeGen/RegisterAllocation.h b/include/llvm/CodeGen/RegisterAllocation.h
deleted file mode 100644 (file)
index 60d0df5..0000000
+++ /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