1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Instruction scheduling is a real pass now.

llvm-svn: 1698
This commit is contained in:
Chris Lattner 2002-02-04 19:59:22 +00:00
parent 8a76e0e37e
commit 5726b834cd

View File

@ -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