From ee445a60a1a1d17f433a1c010b73ee44c341e50c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 4 Feb 2002 19:59:22 +0000 Subject: Instruction scheduling is a real pass now. llvm-svn: 1698 --- llvm/include/llvm/CodeGen/InstrScheduling.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'llvm') diff --git a/llvm/include/llvm/CodeGen/InstrScheduling.h b/llvm/include/llvm/CodeGen/InstrScheduling.h index c05084a1b2a..4ca4086b607 100644 --- a/llvm/include/llvm/CodeGen/InstrScheduling.h +++ b/llvm/include/llvm/CodeGen/InstrScheduling.h @@ -8,11 +8,11 @@ #ifndef LLVM_CODEGEN_INSTR_SCHEDULING_H #define LLVM_CODEGEN_INSTR_SCHEDULING_H -class Method; +class MethodPass; class TargetMachine; //--------------------------------------------------------------------------- -// Function: ScheduleInstructionsWithSSA +// Function: createScheduleInstructionsWithSSAPass(..) // // Purpose: // Entry point for instruction scheduling on SSA form. @@ -21,7 +21,7 @@ class TargetMachine; // are still in SSA form. //--------------------------------------------------------------------------- -bool ScheduleInstructionsWithSSA(Method *M, const TargetMachine &Target); +MethodPass *createInstructionSchedulingWithSSAPass(const TargetMachine &Target); //--------------------------------------------------------------------------- @@ -34,6 +34,6 @@ bool ScheduleInstructionsWithSSA(Method *M, const TargetMachine &Target); //--------------------------------------------------------------------------- // Not implemented yet. -bool ScheduleInstructions(Method *M, const TargetMachine &Target); +//bool ScheduleInstructions(Method *M, const TargetMachine &Target); #endif -- cgit v1.2.3