[llvm-commits] CVS: llvm/lib/CodeGen/LiveInterval.cpp LiveIntervalAnalysis.cpp RegAllocIterativeScan.cpp RegAllocLinearScan.cpp LiveInterval.h LiveIntervalAnalysis.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Sep 20 21:19:21 PDT 2005
Changes in directory llvm/lib/CodeGen:
LiveInterval.cpp updated: 1.21 -> 1.22
LiveIntervalAnalysis.cpp updated: 1.148 -> 1.149
RegAllocIterativeScan.cpp updated: 1.21 -> 1.22
RegAllocLinearScan.cpp updated: 1.113 -> 1.114
LiveInterval.h (r1.14) removed
LiveIntervalAnalysis.h (r1.46) removed
---
Log message:
Expose the LiveInterval interfaces as public headers.
---
Diffs of the changes: (+4 -4)
LiveInterval.cpp | 2 +-
LiveIntervalAnalysis.cpp | 2 +-
RegAllocIterativeScan.cpp | 2 +-
RegAllocLinearScan.cpp | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
Index: llvm/lib/CodeGen/LiveInterval.cpp
diff -u llvm/lib/CodeGen/LiveInterval.cpp:1.21 llvm/lib/CodeGen/LiveInterval.cpp:1.22
--- llvm/lib/CodeGen/LiveInterval.cpp:1.21 Sat May 14 00:34:15 2005
+++ llvm/lib/CodeGen/LiveInterval.cpp Tue Sep 20 23:19:08 2005
@@ -18,7 +18,7 @@
//
//===----------------------------------------------------------------------===//
-#include "LiveInterval.h"
+#include "llvm/CodeGen/LiveInterval.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Target/MRegisterInfo.h"
#include <algorithm>
Index: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
diff -u llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.148 llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.149
--- llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.148 Fri Sep 9 14:19:20 2005
+++ llvm/lib/CodeGen/LiveIntervalAnalysis.cpp Tue Sep 20 23:19:09 2005
@@ -16,7 +16,7 @@
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "liveintervals"
-#include "LiveIntervalAnalysis.h"
+#include "llvm/CodeGen/LiveIntervalAnalysis.h"
#include "VirtRegMap.h"
#include "llvm/Value.h"
#include "llvm/Analysis/LoopInfo.h"
Index: llvm/lib/CodeGen/RegAllocIterativeScan.cpp
diff -u llvm/lib/CodeGen/RegAllocIterativeScan.cpp:1.21 llvm/lib/CodeGen/RegAllocIterativeScan.cpp:1.22
--- llvm/lib/CodeGen/RegAllocIterativeScan.cpp:1.21 Sun Jan 23 16:45:12 2005
+++ llvm/lib/CodeGen/RegAllocIterativeScan.cpp Tue Sep 20 23:19:09 2005
@@ -28,7 +28,7 @@
#include "llvm/Support/Debug.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
-#include "LiveIntervalAnalysis.h"
+#include "llvm/CodeGen/LiveIntervalAnalysis.h"
#include "PhysRegTracker.h"
#include "VirtRegMap.h"
#include <algorithm>
Index: llvm/lib/CodeGen/RegAllocLinearScan.cpp
diff -u llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.113 llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.114
--- llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.113 Tue Aug 30 16:03:36 2005
+++ llvm/lib/CodeGen/RegAllocLinearScan.cpp Tue Sep 20 23:19:09 2005
@@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "regalloc"
-#include "LiveIntervalAnalysis.h"
+#include "llvm/CodeGen/LiveIntervalAnalysis.h"
#include "PhysRegTracker.h"
#include "VirtRegMap.h"
#include "llvm/Function.h"
More information about the llvm-commits
mailing list