diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-09-21 04:19:09 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-09-21 04:19:09 +0000 | 
| commit | b1f8982ff0eb60cb0bbf1c67a4d9bf72464df950 (patch) | |
| tree | 68bc7dd686b2cb79998a24218d7c1ce2a6e46535 | |
| parent | bc6f0d296cd1b4ef2204a4347037b88924441e11 (diff) | |
| download | bcm5719-llvm-b1f8982ff0eb60cb0bbf1c67a4d9bf72464df950.tar.gz bcm5719-llvm-b1f8982ff0eb60cb0bbf1c67a4d9bf72464df950.zip  | |
Expose the LiveInterval interfaces as public headers.
llvm-svn: 23400
| -rw-r--r-- | llvm/include/llvm/CodeGen/LiveInterval.h (renamed from llvm/lib/CodeGen/LiveInterval.h) | 0 | ||||
| -rw-r--r-- | llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h (renamed from llvm/lib/CodeGen/LiveIntervalAnalysis.h) | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/RegAllocIterativeScan.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/RegAllocLinearScan.cpp | 2 | 
6 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.h b/llvm/include/llvm/CodeGen/LiveInterval.h index 6cac0960b21..6cac0960b21 100644 --- a/llvm/lib/CodeGen/LiveInterval.h +++ b/llvm/include/llvm/CodeGen/LiveInterval.h diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.h b/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h index 02ecea7af0c..1356755fb2b 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.h +++ b/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h @@ -22,7 +22,7 @@  #include "llvm/ADT/DenseMap.h"  #include "llvm/CodeGen/MachineFunctionPass.h" -#include "LiveInterval.h" +#include "llvm/CodeGen/LiveInterval.h"  namespace llvm { diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 01298e9c6c9..2cbb46b082e 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -18,7 +18,7 @@  //  //===----------------------------------------------------------------------===// -#include "LiveInterval.h" +#include "llvm/CodeGen/LiveInterval.h"  #include "llvm/ADT/STLExtras.h"  #include "llvm/Target/MRegisterInfo.h"  #include <algorithm> diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 0dac8bbb28d..337dadeb902 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -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" diff --git a/llvm/lib/CodeGen/RegAllocIterativeScan.cpp b/llvm/lib/CodeGen/RegAllocIterativeScan.cpp index 0ebef5ef643..ca7eddd1cc6 100644 --- a/llvm/lib/CodeGen/RegAllocIterativeScan.cpp +++ b/llvm/lib/CodeGen/RegAllocIterativeScan.cpp @@ -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> diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index 584316ecd76..a42a366ef36 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/lib/CodeGen/RegAllocLinearScan.cpp @@ -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"  | 

