[llvm-commits] CVS: llvm/lib/CodeGen/RegAlloc/InterferenceGraph.h LiveRange.h LiveRangeInfo.h RegAllocCommon.h RegClass.h

Brian Gaeke gaeke at cs.uiuc.edu
Sat Sep 20 21:32:01 PDT 2003


Changes in directory llvm/lib/CodeGen/RegAlloc:

InterferenceGraph.h updated: 1.4 -> 1.5
LiveRange.h updated: 1.21 -> 1.22
LiveRangeInfo.h updated: 1.19 -> 1.20
RegAllocCommon.h updated: 1.9 -> 1.10
RegClass.h updated: 1.18 -> 1.19

---
Log message:

Standardize the names of include guards.


---
Diffs of the changes:

Index: llvm/lib/CodeGen/RegAlloc/InterferenceGraph.h
diff -u llvm/lib/CodeGen/RegAlloc/InterferenceGraph.h:1.4 llvm/lib/CodeGen/RegAlloc/InterferenceGraph.h:1.5
--- llvm/lib/CodeGen/RegAlloc/InterferenceGraph.h:1.4	Tue Oct 29 10:50:06 2002
+++ llvm/lib/CodeGen/RegAlloc/InterferenceGraph.h	Sat Sep 20 21:31:37 2003
@@ -17,9 +17,8 @@
      setCurDegreeOfIGNodes() before pushing IGNodes on to stack for coloring.
 */
 
-
-#ifndef INTERFERENCE_GRAPH_H
-#define INTERFERENCE_GRAPH_H
+#ifndef INTERFERENCEGRAPH_H
+#define INTERFERENCEGRAPH_H
 
 #include <vector>
 class LiveRange;


Index: llvm/lib/CodeGen/RegAlloc/LiveRange.h
diff -u llvm/lib/CodeGen/RegAlloc/LiveRange.h:1.21 llvm/lib/CodeGen/RegAlloc/LiveRange.h:1.22
--- llvm/lib/CodeGen/RegAlloc/LiveRange.h:1.21	Thu Jul 10 14:45:28 2003
+++ llvm/lib/CodeGen/RegAlloc/LiveRange.h	Sat Sep 20 21:31:37 2003
@@ -8,8 +8,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef LIVE_RANGE_H
-#define LIVE_RANGE_H
+#ifndef LIVERANGE_H
+#define LIVERANGE_H
 
 #include "llvm/CodeGen/ValueSet.h"
 #include "llvm/Value.h"


Index: llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.h
diff -u llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.h:1.19 llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.h:1.20
--- llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.h:1.19	Mon Sep 15 00:28:42 2003
+++ llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.h	Sat Sep 20 21:31:37 2003
@@ -16,8 +16,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef LIVE_RANGE_INFO_H
-#define LIVE_RANGE_INFO_H
+#ifndef LIVERANGEINFO_H
+#define LIVERANGEINFO_H
 
 #include "llvm/CodeGen/ValueSet.h"
 #include "Support/hash_map"


Index: llvm/lib/CodeGen/RegAlloc/RegAllocCommon.h
diff -u llvm/lib/CodeGen/RegAlloc/RegAllocCommon.h:1.9 llvm/lib/CodeGen/RegAlloc/RegAllocCommon.h:1.10
--- llvm/lib/CodeGen/RegAlloc/RegAllocCommon.h:1.9	Sat Sep 14 18:04:52 2002
+++ llvm/lib/CodeGen/RegAlloc/RegAllocCommon.h	Sat Sep 20 21:31:37 2003
@@ -4,8 +4,8 @@
 // 
 //===----------------------------------------------------------------------===//
 
-#ifndef LLVM_CODEGEN_REGALLOCCOMMON_H
-#define LLVM_CODEGEN_REGALLOCCOMMON_H
+#ifndef REGALLOCCOMMON_H
+#define REGALLOCCOMMON_H
 
 enum RegAllocDebugLevel_t {
   RA_DEBUG_None         = 0,


Index: llvm/lib/CodeGen/RegAlloc/RegClass.h
diff -u llvm/lib/CodeGen/RegAlloc/RegClass.h:1.18 llvm/lib/CodeGen/RegAlloc/RegClass.h:1.19
--- llvm/lib/CodeGen/RegAlloc/RegClass.h:1.18	Thu Aug 21 17:10:24 2003
+++ llvm/lib/CodeGen/RegAlloc/RegClass.h	Sat Sep 20 21:31:37 2003
@@ -5,8 +5,8 @@
 
 */
 
-#ifndef REG_CLASS_H
-#define REG_CLASS_H
+#ifndef REGCLASS_H
+#define REGCLASS_H
 
 #include "llvm/Target/TargetRegInfo.h"
 #include "InterferenceGraph.h"





More information about the llvm-commits mailing list