diff options
author | David Blaikie <dblaikie@gmail.com> | 2017-11-17 01:07:10 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2017-11-17 01:07:10 +0000 |
commit | b3bde2ea50decc455f3b2fff02e49351e4209d92 (patch) | |
tree | 7f848414778fd36479abf3669c0d1ebcaf12b343 /llvm/lib/CodeGen/BranchFolding.cpp | |
parent | bd159d32c43732a65a943333d04f46e5d30fb9c5 (diff) | |
download | bcm5719-llvm-b3bde2ea50decc455f3b2fff02e49351e4209d92.tar.gz bcm5719-llvm-b3bde2ea50decc455f3b2fff02e49351e4209d92.zip |
Fix a bunch more layering of CodeGen headers that are in Target
All these headers already depend on CodeGen headers so moving them into
CodeGen fixes the layering (since CodeGen depends on Target, not the
other way around).
llvm-svn: 318490
Diffstat (limited to 'llvm/lib/CodeGen/BranchFolding.cpp')
-rw-r--r-- | llvm/lib/CodeGen/BranchFolding.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/BranchFolding.cpp b/llvm/lib/CodeGen/BranchFolding.cpp index 8de3dd29c5c..d31260e767f 100644 --- a/llvm/lib/CodeGen/BranchFolding.cpp +++ b/llvm/lib/CodeGen/BranchFolding.cpp @@ -40,7 +40,10 @@ #include "llvm/CodeGen/MachineOperand.h" #include "llvm/CodeGen/MachineRegisterInfo.h" #include "llvm/CodeGen/TargetInstrInfo.h" +#include "llvm/CodeGen/TargetOpcodes.h" #include "llvm/CodeGen/TargetPassConfig.h" +#include "llvm/CodeGen/TargetRegisterInfo.h" +#include "llvm/CodeGen/TargetSubtargetInfo.h" #include "llvm/IR/DebugInfoMetadata.h" #include "llvm/IR/DebugLoc.h" #include "llvm/IR/Function.h" @@ -54,9 +57,6 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetMachine.h" -#include "llvm/Target/TargetOpcodes.h" -#include "llvm/Target/TargetRegisterInfo.h" -#include "llvm/Target/TargetSubtargetInfo.h" #include <cassert> #include <cstddef> #include <iterator> |