* Add tag so emacs knows it's a c++ file
authorChris Lattner <sabre@nondot.org>
Fri, 7 Sep 2001 21:04:59 +0000 (21:04 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 7 Sep 2001 21:04:59 +0000 (21:04 +0000)
* Remove frivolous flyers

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@484 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/InstrScheduling.h

index dbe9211dca51b2d4ba9be77aea9b180781aaed12..d98f237d83aecba91e04b556d0fb8fc8ffa7d976 100644 (file)
@@ -1,4 +1,4 @@
-// $Id$
+// $Id$ -*- C++ -*-
 //***************************************************************************
 // File:
 //     InstrScheduling.h
 #define LLVM_CODEGEN_INSTR_SCHEDULING_H
 
 
-//************************ User Include Files *****************************/
-
 #include "llvm/Support/CommandLine.h"
-#include "llvm/CodeGen/TargetMachine.h"
-
-//************************ Opaque Declarations*****************************/
+#include "llvm/CodeGen/MachineInstr.h"
 
 class Method;
 class SchedulingManager;
+class TargetMachine;
 
-//************************ Exported Data Types *****************************/
 
 // Debug option levels for instruction scheduling
 enum SchedDebugLevel_t {
@@ -36,11 +32,6 @@ enum SchedDebugLevel_t {
 extern cl::Enum<SchedDebugLevel_t> SchedDebugLevel;
 
 
-//************************** External Classes ******************************/
-
-
-//************************* External Functions *****************************/
-
 
 //---------------------------------------------------------------------------
 // Function: ScheduleInstructionsWithSSA
@@ -80,7 +71,4 @@ bool          ScheduleInstructions            (Method* method,
 
 bool           instrIsFeasible                 (const SchedulingManager& S,
                                                 MachineOpCode opCode);
-
-//**************************************************************************/
-
 #endif