forked from OSchip/llvm-project
LiveIntervalCalc - remove unnecessary includes. NFC.
As we're inheriting from LiveRangeCalc, all the headers are already explicitly required by LiveRangeCalc.h
This commit is contained in:
parent
3561526208
commit
9f726376e3
|
@ -17,24 +17,11 @@
|
||||||
#ifndef LLVM_LIB_CODEGEN_LIVEINTERVALCALC_H
|
#ifndef LLVM_LIB_CODEGEN_LIVEINTERVALCALC_H
|
||||||
#define LLVM_LIB_CODEGEN_LIVEINTERVALCALC_H
|
#define LLVM_LIB_CODEGEN_LIVEINTERVALCALC_H
|
||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
|
||||||
#include "llvm/ADT/BitVector.h"
|
|
||||||
#include "llvm/ADT/DenseMap.h"
|
|
||||||
#include "llvm/ADT/IndexedMap.h"
|
|
||||||
#include "llvm/ADT/SmallVector.h"
|
|
||||||
#include "llvm/CodeGen/LiveInterval.h"
|
|
||||||
#include "llvm/CodeGen/LiveRangeCalc.h"
|
#include "llvm/CodeGen/LiveRangeCalc.h"
|
||||||
#include "llvm/CodeGen/MachineBasicBlock.h"
|
|
||||||
#include "llvm/CodeGen/SlotIndexes.h"
|
|
||||||
#include "llvm/MC/LaneBitmask.h"
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
template <class NodeT> class DomTreeNodeBase;
|
template <class NodeT> class DomTreeNodeBase;
|
||||||
class MachineDominatorTree;
|
|
||||||
class MachineFunction;
|
|
||||||
class MachineRegisterInfo;
|
|
||||||
|
|
||||||
using MachineDomTreeNode = DomTreeNodeBase<MachineBasicBlock>;
|
using MachineDomTreeNode = DomTreeNodeBase<MachineBasicBlock>;
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/CodeGen/LiveIntervalCalc.h"
|
#include "llvm/CodeGen/LiveIntervalCalc.h"
|
||||||
#include "llvm/ADT/BitVector.h"
|
|
||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/ADT/SetVector.h"
|
#include "llvm/ADT/SetVector.h"
|
||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
|
|
Loading…
Reference in New Issue