diff options
| author | Eric Christopher <echristo@gmail.com> | 2014-06-12 22:28:06 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2014-06-12 22:28:06 +0000 |
| commit | f55a224920faf87507f38b5486fc74a8e8500daf (patch) | |
| tree | 854eced213e3175a584e33a1cbef52d6d60d8590 /llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | |
| parent | 54367e01ccf2fb686ffa86d48c5ea1d05c348116 (diff) | |
| download | bcm5719-llvm-f55a224920faf87507f38b5486fc74a8e8500daf.tar.gz bcm5719-llvm-f55a224920faf87507f38b5486fc74a8e8500daf.zip | |
Move PPCJITInfo off of the TargetMachine and onto the subtarget.
Needed to migrate a few functions around to avoid circular header
dependencies.
llvm-svn: 210845
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp index ed82a633930..c29de1b5d09 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -42,8 +42,7 @@ PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT, StringRef CPU, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL, bool is64Bit) : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL), - Subtarget(TT, CPU, FS, is64Bit, OL), JITInfo(Subtarget), - TLInfo(*this), TSInfo(*this) { + Subtarget(TT, CPU, FS, is64Bit, OL), TLInfo(*this), TSInfo(*this) { initAsmInfo(); } |

