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