Rename getEntryNode -> getEntryBlock()
[oota-llvm.git] / include / llvm / CodeGen / RegisterAllocation.h
index e552fbe887ab793b31ec8fc505cbe55bf0c04b47..572c32561041e9adc17d05b542b1985bb4d1b674 100644 (file)
@@ -7,14 +7,13 @@
 #ifndef LLVM_CODEGEN_REGISTERALLOCATION_H
 #define LLVM_CODEGEN_REGISTERALLOCATION_H
 
-#include "llvm/Pass.h"
+class FunctionPass;
 class TargetMachine;
-class MethodPass;
 
 //----------------------------------------------------------------------------
 // Entry point for register allocation for a module
 //----------------------------------------------------------------------------
 
-MethodPass *getRegisterAllocator(TargetMachine &T);
+FunctionPass *getRegisterAllocator(TargetMachine &T);
 
 #endif