mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
9979895976
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4374 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
615 B
C++
20 lines
615 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 Pass;
|
|
class TargetMachine;
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Entry point for register allocation for a module
|
|
//----------------------------------------------------------------------------
|
|
|
|
Pass *getRegisterAllocator(TargetMachine &T);
|
|
|
|
#endif
|