diff options
author | Eric Christopher <echristo@gmail.com> | 2014-06-12 22:50:10 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-06-12 22:50:10 +0000 |
commit | f8c031fccfe4307b138468750801834520e11b2b (patch) | |
tree | bebc209aff41028c9de5a289c5093dbfd199c586 /llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | 428c40352e0b3c9f0b1ca61d773d2ad230d3df17 (diff) | |
download | llvm-f8c031fccfe4307b138468750801834520e11b2b.zip llvm-f8c031fccfe4307b138468750801834520e11b2b.tar.gz llvm-f8c031fccfe4307b138468750801834520e11b2b.tar.bz2 |
Move PPCTargetLowering off of the TargetMachine and onto the subtarget.
llvm-svn: 210852
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp index c29de1b..04713d0 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -42,7 +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), TLInfo(*this), TSInfo(*this) { + Subtarget(TT, CPU, FS, *this, is64Bit, OL), TSInfo(*this) { initAsmInfo(); } |