diff options
author | Matthias Braun <matze@braunis.de> | 2016-05-10 03:21:59 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2016-05-10 03:21:59 +0000 |
commit | 31d19d43c79603d43c331bce2e92e5569c2ea216 (patch) | |
tree | 8878cfa723e0dae760fca04600f258e490278e06 /llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | d06896138c8c3cf38f94091b2e928318546f80b2 (diff) | |
download | bcm5719-llvm-31d19d43c79603d43c331bce2e92e5569c2ea216.tar.gz bcm5719-llvm-31d19d43c79603d43c331bce2e92e5569c2ea216.zip |
CodeGen: Move TargetPassConfig from Passes.h to an own header; NFC
Many files include Passes.h but only a fraction needs to know about the
TargetPassConfig class. Move it into an own header. Also rename
Passes.cpp to TargetPassConfig.cpp while we are at it.
llvm-svn: 269011
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp index 77aab2dd031..fc8b41606f5 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -17,6 +17,7 @@ #include "PPCTargetTransformInfo.h" #include "llvm/CodeGen/LiveVariables.h" #include "llvm/CodeGen/Passes.h" +#include "llvm/CodeGen/TargetPassConfig.h" #include "llvm/IR/Function.h" #include "llvm/IR/LegacyPassManager.h" #include "llvm/MC/MCStreamer.h" |