aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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