From: Chris Lattner Date: Tue, 30 Sep 2003 20:15:32 +0000 (+0000) Subject: This got merged into Passes.h X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=799e0802b25e28a150991d5507d99cf19bb80955;p=oota-llvm.git This got merged into Passes.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8796 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/RegisterAllocation.h b/include/llvm/CodeGen/RegisterAllocation.h deleted file mode 100644 index 60d0df511ac..00000000000 --- 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