diff options
author | Marcello Maggioni <hayarms@gmail.com> | 2019-10-17 03:12:51 +0000 |
---|---|---|
committer | Marcello Maggioni <hayarms@gmail.com> | 2019-10-17 03:12:51 +0000 |
commit | 6fc9563dba6319ab0715c6fd4cb072dc6edc4c72 (patch) | |
tree | 0034c5e16b977f29b12e669ea9879361717b78c8 /llvm/lib/CodeGen/LiveIntervals.cpp | |
parent | 962ca076e51c25a7a08f4e0d329c65328a635bdb (diff) | |
download | bcm5719-llvm-6fc9563dba6319ab0715c6fd4cb072dc6edc4c72.tar.gz bcm5719-llvm-6fc9563dba6319ab0715c6fd4cb072dc6edc4c72.zip |
Move LiveRangeCalc header to publicily available position. NFC
Differential Revision: https://reviews.llvm.org/D69078
llvm-svn: 375075
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervals.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervals.cpp b/llvm/lib/CodeGen/LiveIntervals.cpp index 0781a0b121b..9d85fc3e08d 100644 --- a/llvm/lib/CodeGen/LiveIntervals.cpp +++ b/llvm/lib/CodeGen/LiveIntervals.cpp @@ -14,7 +14,6 @@ //===----------------------------------------------------------------------===// #include "llvm/CodeGen/LiveIntervals.h" -#include "LiveRangeCalc.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DepthFirstIterator.h" #include "llvm/ADT/SmallPtrSet.h" @@ -22,6 +21,7 @@ #include "llvm/ADT/iterator_range.h" #include "llvm/Analysis/AliasAnalysis.h" #include "llvm/CodeGen/LiveInterval.h" +#include "llvm/CodeGen/LiveRangeCalc.h" #include "llvm/CodeGen/LiveVariables.h" #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |