Standardize header file comments
[oota-llvm.git] / include / llvm / CodeGen / RegisterAllocation.h
1 //===-- CodeGen/RegisterAllocation.h - RegAlloc Pass ------------*- C++ -*-===//
2 //
3 // This pass register allocates a module, a method at a time.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #ifndef LLVM_CODEGEN_REGISTERALLOCATION_H
8 #define LLVM_CODEGEN_REGISTERALLOCATION_H
9
10 class FunctionPass;
11 class TargetMachine;
12
13 //----------------------------------------------------------------------------
14 // Entry point for register allocation for a module
15 //----------------------------------------------------------------------------
16
17 FunctionPass *getRegisterAllocator(TargetMachine &T);
18
19 #endif