diff options
author | Matthias Braun <matze@braunis.de> | 2017-12-13 02:51:04 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2017-12-13 02:51:04 +0000 |
commit | f842297d50ecb5dceeb89c624744fc2531c2776c (patch) | |
tree | 0c21627c05a35350cf070b9e350e84cf282d9335 /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | d9847b114f7519123182848430e966cc5eee85d2 (diff) | |
download | bcm5719-llvm-f842297d50ecb5dceeb89c624744fc2531c2776c.tar.gz bcm5719-llvm-f842297d50ecb5dceeb89c624744fc2531c2776c.zip |
Rename LiveIntervalAnalysis.h to LiveIntervals.h
Headers/Implementation files should be named after the class they
declare/define.
Also eliminated an `#include "llvm/CodeGen/LiveIntervalAnalysis.h"` in
favor of `class LiveIntarvals;`
llvm-svn: 320546
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index b306932832c..302c75133e3 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -26,7 +26,7 @@ #include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/iterator_range.h" -#include "llvm/CodeGen/LiveIntervalAnalysis.h" +#include "llvm/CodeGen/LiveIntervals.h" #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineOperand.h" |