so far everything compiles


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6423 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/ModuloScheduling/ModuloScheduling.h b/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
index 87403cf..782476e 100644
--- a/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
+++ b/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
@@ -13,6 +13,13 @@
 #include <iostream>
 #include <vector>
 
+// for debug information selecton
+enum ModuloSchedDebugLevel_t { 
+  ModuloSchedDebugLevel_NoDebugInfo,
+  ModuloSchedDebugLevel_PrintSchedule,
+  ModuloSchedDebugLevel_PrintScheduleProcess,
+};
+
 class ModuloScheduling: NonCopyable {
 private:
 
@@ -48,6 +55,10 @@
   typedef BasicBlock::InstListType InstListType;
   typedef std::vector<std::vector<ModuloSchedGraphNode*> > vvNodeType;
 
+
+
+
+
 public:
 
   ModuloScheduling(ModuloSchedGraph & _graph):
@@ -60,18 +71,23 @@
 
   ~ModuloScheduling() {};
 
-  // for debug information selecton
-  enum DebugLevel_t {
-    DebugLevel_NoDebugInfo,
-    DebugLevel_PrintSchedule,
-    DebugLevel_PrintScheduleProcess,
-  };
 
-  static DebugLevel_t DebugLevel;
 
-  static bool printSchedule() { return DebugLevel >= DebugLevel_PrintSchedule; }
-  static bool printScheduleProcess() {
-    return DebugLevel >= DebugLevel_PrintScheduleProcess;
+  static bool 
+  printSchedule() { 
+
+    //return ModuloScheduling::DebugLevel >= DebugLevel_PrintSchedule; 
+    return false;
+
+
+  }
+  static bool 
+  printScheduleProcess() {
+  
+    //return DebugLevel >= DebugLevel_PrintScheduleProcess;
+    return false;
+
+
   }
 
   // The method to compute schedule and instert epilogue and prologue