forked from OSchip/llvm-project
Move the include of MachineLocation.h into MachineModuleInfo.h
because it declares a std::vector<MachineMove>, and strict concept checking requires the definition of MachineMove to be available. llvm-svn: 57617
This commit is contained in:
parent
986c9bbe59
commit
6613991eae
|
@ -38,6 +38,7 @@
|
|||
#include "llvm/ADT/UniqueVector.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/CodeGen/MachineLocation.h"
|
||||
#include "llvm/GlobalValue.h"
|
||||
#include "llvm/Pass.h"
|
||||
|
||||
|
@ -50,7 +51,6 @@ class DebugInfoDesc;
|
|||
class GlobalVariable;
|
||||
class MachineBasicBlock;
|
||||
class MachineFunction;
|
||||
class MachineMove;
|
||||
class Module;
|
||||
class PointerType;
|
||||
class StructType;
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#include "llvm/Analysis/ValueTracking.h"
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineLocation.h"
|
||||
#include "llvm/CodeGen/Passes.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
|
|
Loading…
Reference in New Issue