Rename getEntryNode -> getEntryBlock()
[oota-llvm.git] / include / llvm / CodeGen / InstrScheduling.h
index d740f1892b5917bade1193cecc88574c9ab23fd8..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,19 +21,6 @@ class TargetMachine;
 //   are still in SSA form.
 //---------------------------------------------------------------------------
 
-Pass *createInstructionSchedulingWithSSAPass(const TargetMachine &Target);
-
-
-//---------------------------------------------------------------------------
-// Function: ScheduleInstructions
-// 
-// Purpose:
-//   Entry point for instruction scheduling on machine code.
-//   Schedules the machine instructions generated by instruction selection.
-//   Assumes that register allocation has been done.
-//---------------------------------------------------------------------------
-
-// Not implemented yet.
-//bool ScheduleInstructions(Method *M, const TargetMachine &Target);
+FunctionPass *createInstructionSchedulingWithSSAPass(const TargetMachine &Target);
 
 #endif