[llvm-commits] CVS: llvm/lib/CodeGen/RegAlloc/InterferenceGraph.cpp LiveRangeInfo.cpp PhyRegAlloc.cpp RegClass.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Jan 15 13:58:04 PST 2003


Changes in directory llvm/lib/CodeGen/RegAlloc:

InterferenceGraph.cpp updated: 1.12 -> 1.13
LiveRangeInfo.cpp updated: 1.37 -> 1.38
PhyRegAlloc.cpp updated: 1.92 -> 1.93
RegClass.cpp updated: 1.20 -> 1.21

---
Log message:

#include RegClass.h explicitly


---
Diffs of the changes:

Index: llvm/lib/CodeGen/RegAlloc/InterferenceGraph.cpp
diff -u llvm/lib/CodeGen/RegAlloc/InterferenceGraph.cpp:1.12 llvm/lib/CodeGen/RegAlloc/InterferenceGraph.cpp:1.13
--- llvm/lib/CodeGen/RegAlloc/InterferenceGraph.cpp:1.12	Tue Oct 29 10:51:05 2002
+++ llvm/lib/CodeGen/RegAlloc/InterferenceGraph.cpp	Wed Jan 15 13:56:50 2003
@@ -4,9 +4,9 @@
 // 
 //===----------------------------------------------------------------------===//
 
+#include "RegAllocCommon.h"
 #include "llvm/CodeGen/InterferenceGraph.h"
 #include "llvm/CodeGen/IGNode.h"
-#include "llvm/CodeGen/RegAllocCommon.h"
 #include "Support/STLExtras.h"
 #include <algorithm>
 using std::cerr;


Index: llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp
diff -u llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp:1.37 llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp:1.38
--- llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp:1.37	Tue Jan 14 15:58:49 2003
+++ llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp	Wed Jan 15 13:56:50 2003
@@ -5,7 +5,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/CodeGen/LiveRangeInfo.h"
-#include "llvm/CodeGen/RegAllocCommon.h"
+#include "RegAllocCommon.h"
 #include "llvm/CodeGen/RegClass.h"
 #include "llvm/CodeGen/IGNode.h"
 #include "llvm/CodeGen/MachineInstr.h"


Index: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
diff -u llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.92 llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.93
--- llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.92	Wed Jan 15 12:08:07 2003
+++ llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp	Wed Jan 15 13:56:50 2003
@@ -5,8 +5,9 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/CodeGen/RegisterAllocation.h"
-#include "llvm/CodeGen/RegAllocCommon.h"
+#include "RegAllocCommon.h"
 #include "llvm/CodeGen/IGNode.h"
+#include "llvm/CodeGen/RegClass.h"
 #include "llvm/CodeGen/PhyRegAlloc.h"
 #include "llvm/CodeGen/MachineInstrBuilder.h"
 #include "llvm/CodeGen/MachineInstrAnnot.h"


Index: llvm/lib/CodeGen/RegAlloc/RegClass.cpp
diff -u llvm/lib/CodeGen/RegAlloc/RegClass.cpp:1.20 llvm/lib/CodeGen/RegAlloc/RegClass.cpp:1.21
--- llvm/lib/CodeGen/RegAlloc/RegClass.cpp:1.20	Sat Dec 28 21:12:58 2002
+++ llvm/lib/CodeGen/RegAlloc/RegClass.cpp	Wed Jan 15 13:56:50 2003
@@ -5,7 +5,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/CodeGen/RegClass.h"
-#include "llvm/CodeGen/RegAllocCommon.h"
+#include "RegAllocCommon.h"
 #include "llvm/CodeGen/IGNode.h"
 using std::cerr;
 





More information about the llvm-commits mailing list