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/PPCSubtarget.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/PPCSubtarget.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSubtarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.cpp b/llvm/lib/Target/PowerPC/PPCSubtarget.cpp index 355902875d6..6507caaafbb 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.cpp +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.cpp @@ -80,7 +80,7 @@ PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU, : PPCGenSubtargetInfo(TT, CPU, FS), IsPPC64(is64Bit), TargetTriple(TT), OptLevel(OptLevel), FrameLowering(initializeSubtargetDependencies(CPU, FS)), - DL(getDataLayoutString(*this)), InstrInfo(*this) {} + DL(getDataLayoutString(*this)), InstrInfo(*this), JITInfo(*this) {} /// SetJITMode - This is called to inform the subtarget info that we are /// producing code for the JIT. |