Added virtual function to generate an instruction sequence to
[oota-llvm.git] / include / llvm / CodeGen / InstrScheduling.h
index d98f237d83aecba91e04b556d0fb8fc8ffa7d976..8f88a61590a14dbdb9cf9e8c06f3692cd6acae0f 100644 (file)
 #ifndef LLVM_CODEGEN_INSTR_SCHEDULING_H
 #define LLVM_CODEGEN_INSTR_SCHEDULING_H
 
-
 #include "llvm/Support/CommandLine.h"
 #include "llvm/CodeGen/MachineInstr.h"
 
 class Method;
 class SchedulingManager;
 class TargetMachine;
-
+class MachineSchedInfo;
 
 // Debug option levels for instruction scheduling
 enum SchedDebugLevel_t {
@@ -43,8 +42,7 @@ extern cl::Enum<SchedDebugLevel_t> SchedDebugLevel;
 //   are still in SSA form.
 //---------------------------------------------------------------------------
 
-bool           ScheduleInstructionsWithSSA     (Method* method,
-                                                const TargetMachine &Target);
+bool ScheduleInstructionsWithSSA(Method* method, const TargetMachine &Target);
 
 
 //---------------------------------------------------------------------------