Rename getEntryNode -> getEntryBlock()
[oota-llvm.git] / include / llvm / CodeGen / InstrScheduling.h
index e01dfe70c9b835c99c208e8c8e9c76e260fbf976..1e9c0dcf500157cb8378e535865048b9a9fb815e 100644 (file)
@@ -8,7 +8,7 @@
 #ifndef LLVM_CODEGEN_INSTR_SCHEDULING_H
 #define LLVM_CODEGEN_INSTR_SCHEDULING_H
 
-class Pass;
+class FunctionPass;
 class TargetMachine;
 
 //---------------------------------------------------------------------------
@@ -21,6 +21,6 @@ class TargetMachine;
 //   are still in SSA form.
 //---------------------------------------------------------------------------
 
-Pass *createInstructionSchedulingWithSSAPass(const TargetMachine &Target);
+FunctionPass *createInstructionSchedulingWithSSAPass(const TargetMachine &Target);
 
 #endif