llvm-6502/include/llvm/CodeGen/RegisterAllocation.h
2003-08-14 06:09:32 +00:00

20 lines
631 B
C++

//===-- 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