* Minor cleanups
* Reduce number of #includes, sometimes drastically (LiveRangeInfo.h lost _7_)
* Move instrIsFeasible() from InstrScheduling.h to SchedPriorities.h
* Delete blank lines at end of files


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1672 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/RegAlloc/IGNode.h b/lib/CodeGen/RegAlloc/IGNode.h
index b89aea3..01ecc13 100644
--- a/lib/CodeGen/RegAlloc/IGNode.h
+++ b/lib/CodeGen/RegAlloc/IGNode.h
@@ -28,6 +28,8 @@
 
 #include "llvm/CodeGen/RegAllocCommon.h"
 #include "llvm/CodeGen/LiveRange.h"
+class LiveRange;
+class RegClass;
 
 //----------------------------------------------------------------------------
 // Class IGNode
@@ -35,8 +37,7 @@
 // Represents a node in an interference graph.
 //----------------------------------------------------------------------------
 
-class IGNode
-{
+class IGNode {
   const int Index;            // index within IGNodeList 
 
   bool OnStack;               // this has been pushed on to stack for coloring
@@ -51,9 +52,7 @@
   // After that, never incremented/set again nor used.
 
   LiveRange *const ParentLR;  // parent LR (cannot be a const)
-
-
- public:
+public:
 
   // constructor
   //
@@ -117,8 +116,9 @@
   inline void setRegClass(RegClass *const RC) 
     { ParentLR->setRegClass(RC);  }
 
-  inline RegClass *const getRegClass() const 
-    { return ParentLR->getRegClass(); } 
+  inline RegClass *const getRegClass() const {
+    return ParentLR->getRegClass();
+  }
 
   inline bool hasColor() const 
     { return ParentLR->hasColor();  }